From 72618609edaefcad9d54df196820a3a81c990700 Mon Sep 17 00:00:00 2001 From: dud3 Date: Wed, 18 Feb 2015 01:45:48 +0000 Subject: [PATCH] [FIX] Remove link and vendors from email body. Resolves: #44 Releases: 1.3.7 --- app/repositories/EmailsRepository.php | 121 +- e_fwd.sql | 410 +- out.txt | 6294 +---------------- .../scripts/controllers/keyWordsListCtrl.js | 16 +- 4 files changed, 471 insertions(+), 6370 deletions(-) diff --git a/app/repositories/EmailsRepository.php b/app/repositories/EmailsRepository.php index fc66d87..81627fb 100644 --- a/app/repositories/EmailsRepository.php +++ b/app/repositories/EmailsRepository.php @@ -21,6 +21,8 @@ class EmailsRepository implements EmailsRepositoryInterface { public $inbox; public $emails; + public $email_counter = 0; + public $user; protected static $forward_email_from; @@ -135,37 +137,36 @@ public function readMails($html_enable, $email_search) { unset($std_email->subject[0]); } - $std_email->subject = implode(" ", $std_email->subject); - + $std_email->subject = implode(" ", $std_email->subject); - if(!self::$enable_html_email) { + if(!self::$enable_html_email) { - /** - * [$std_email->subject description] - * Disable this part for now, The reason for that - * is that, once the request is made to the email server, - * and mails are found, the email server marks them as "seen", - * which makes the `./artians --html_enabled=true` usless, since it - * can't actually find anything to read. - * - $std_email->body = explode("\n", $std_email->body); + /** + * [$std_email->subject description] + * Disable this part for now, The reason for that + * is that, once the request is made to the email server, + * and mails are found, the email server marks them as "seen", + * which makes the `./artians --html_enabled=true` usless, since it + * can't actually find anything to read. + * + $std_email->body = explode("\n", $std_email->body); - array_walk($std_email->body, array($this, 'trim_value')); + array_walk($std_email->body, array($this, 'trim_value')); - if(in_array('---------- Forwarded message ----------', $std_email->body)) { - $std_email->body = array_slice($std_email->body, 9); - } + if(in_array('---------- Forwarded message ----------', $std_email->body)) { + $std_email->body = array_slice($std_email->body, 9); + } - $this->search_for = ["Dear", "Dear Alexander", "Dear Alexander Notifications,"]; + $this->search_for = ["Dear", "Dear Alexander", "Dear Alexander Notifications,"]; - if(in_array($this->search_for[0], $std_email->body) - || in_array($this->search_for[1], $std_email->body) - || in_array($this->search_for[2], $std_email->body)) { + if(in_array($this->search_for[0], $std_email->body) + || in_array($this->search_for[1], $std_email->body) + || in_array($this->search_for[2], $std_email->body)) { - $std_email->body = array_slice($std_email->body, 3); - } - * - */ + $std_email->body = array_slice($std_email->body, 3); + } + * + */ /** * ----------------- @@ -177,36 +178,50 @@ public function readMails($html_enable, $email_search) { /* Explode the email into pieces */ $std_email->body = explode("\n", $std_email->body); - /** - * Trim the value otherwise at the end of the each mail - * -> we will strat seeing the value of ^M after exploding - * -> the string, and this makes imposibble to compare the - * -> keywords from the database even if we include the - * -> ^M symbol at the end of each array element. - */ - array_walk($std_email->body, array($this, 'trim_value')); - - /** - * Two of this following conditions are for: - * * if the mail is forwarded by a person/automatic email forwarder - * * if the mail contains the keyword of "Dear" - * - * The reason for the first one is that, we don't want to store mails into the - * -> DB with the forwarded information. - * - * The second one is that we won't eventually want to erase the mail that has been - * -> forwarded to an X person since we will forward the same email to multiple - * -> users that match the keyword(s), and replace their name on the emal. - */ - if(in_array('---------- Forwarded message ----------', $std_email->body)) { - $std_email->body = array_slice($std_email->body, 9); - } + /** + * Trim the value otherwise at the end of the each mail + * -> we will strat seeing the value of ^M after exploding + * -> the string, and this makes imposibble to compare the + * -> keywords from the database even if we include the + * -> ^M symbol at the end of each array element. + */ + array_walk($std_email->body, array($this, 'trim_value')); + + /*! For now I'm just going to hard code the conditon here, + * later on give the user the ability to chose the word phrase + */ + $std_email->body = str_ireplace('Sebis Direct, Inc.', '', $std_email->body); + + /* Let's check if the body containts any link or, if so erase it */ + for($i = 0; $i < count($std_email->body); $i++) { + $std_email->body[$i] = trim($std_email->body[$i]); + if( stristr($std_email->body[$i], 'Click') !== false OR stristr($std_email->body[$i], 'click') !== false ) { + unset($std_email->body[$i]); + } + } + - /** - * if strpos($mystring, $findme) - * We might want to search the string if it contains the keyword of "Dear" or simmilar. - */ - $this->search_for = ["Dear Alexander Notifications,

"]; + /** + * Two of this following conditions are for: + * * if the mail is forwarded by a person/automatic email forwarder + * * if the mail contains the keyword of "Dear" + * + * The reason for the first one is that, we don't want to store mails into the + * -> DB with the forwarded information. + * + * The second one is that we won't eventually want to erase the mail that has been + * -> forwarded to an X person since we will forward the same email to multiple + * -> users that match the keyword(s), and replace their name on the emal. + */ + if(in_array('---------- Forwarded message ----------', $std_email->body)) { + $std_email->body = array_slice($std_email->body, 9); + } + + /** + * if strpos($mystring, $findme) + * We might want to search the string if it contains the keyword of "Dear" or simmilar. + */ + $this->search_for = ["Dear Alexander Notifications,

"]; if(in_array($this->search_for[0], $std_email->body)) { $std_email->body = array_slice($std_email->body, 3); diff --git a/e_fwd.sql b/e_fwd.sql index bc84053..6fd6a08 100644 --- a/e_fwd.sql +++ b/e_fwd.sql @@ -1,43 +1,91 @@ -- phpMyAdmin SQL Dump --- version 4.0.10deb1 +-- version 3.5.8.2 -- http://www.phpmyadmin.net -- -- Host: localhost --- Generation Time: Oct 01, 2014 at 08:31 PM --- Server version: 5.5.38-0ubuntu0.14.04.1-log --- PHP Version: 5.5.9-1ubuntu4.4 +-- Generation Time: Feb 17, 2015 at 05:15 PM +-- Server version: 5.5.41-37.0-log +-- PHP Version: 5.4.23 -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; -/// -// @note: Nees to be updated -// @blah + /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- --- Database: `e_fwd` +-- Database: `acsbillc_e_fwd` -- -- -------------------------------------------------------- -- --- Table structure for table `emails_list` +-- Table structure for table `email_address_list` -- -CREATE TABLE IF NOT EXISTS `emails_list` ( +DROP TABLE IF EXISTS `email_address_list`; +CREATE TABLE IF NOT EXISTS `email_address_list` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(255) DEFAULT NULL, - `title` varchar(255) DEFAULT NULL, - `body` varchar(255) DEFAULT NULL, + `full_name` varchar(255) DEFAULT NULL, `keyword_id` int(22) NOT NULL, - `fwd_accept` tinyint(1) NOT NULL DEFAULT '0', - `user_id` int(11) DEFAULT NULL, + `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=123 ; + +-- +-- Dumping data for table `email_address_list` +-- + +INSERT INTO `email_address_list` (`id`, `email`, `full_name`, `keyword_id`, `created_at`, `updated_at`) VALUES +(29, 'dk118@gmail.com', 'dasdas', 0, '2014-11-25 22:38:51', '2014-11-25 22:38:51'), +(76, 'ta@acsbill.com', 'Tim ACS', 31, '2015-01-13 00:50:06', '2015-01-13 00:50:06'), +(77, 'ta@alexent.com', 'Tim AE', 31, '2015-01-13 00:50:06', '2015-01-13 00:50:06'), +(78, 'ta@acsbill.com', 'Tim', 32, '2015-01-13 00:53:48', '2015-01-13 00:53:48'), +(79, 'tlac@alexent.com', 'Tamra', 32, '2015-01-13 00:53:48', '2015-01-13 00:53:48'), +(80, 'ta@acsbill.com', 'Tim Org Cnt', 33, '2015-01-13 00:55:49', '2015-01-13 00:55:49'), +(81, 'ta@alextent.com', 'Tim AE NOT Org Cnt', 33, '2015-01-13 00:55:49', '2015-01-13 00:55:49'), +(82, 'tlac@alexent.com', 'Tamra', 33, '2015-01-13 00:55:49', '2015-01-13 00:55:49'), +(83, 'ta@acsbill.com', 'Tim', 34, '2015-01-13 00:58:35', '2015-01-13 00:58:35'), +(84, 'tlac@alexent.com', 'Tamra', 34, '2015-01-13 00:58:35', '2015-01-13 00:58:35'), +(85, 'ta@acsbill.com', 'Tim', 35, '2015-01-13 00:59:49', '2015-01-13 00:59:49'), +(86, 'tlac@alexent.com', 'Tamra', 35, '2015-01-13 00:59:49', '2015-01-13 00:59:49'), +(87, 'ta@acsbill.com', 'Tim', 36, '2015-01-13 01:01:05', '2015-01-13 01:01:05'), +(88, 'tlac@alexent.com', 'Tim', 36, '2015-01-13 01:01:05', '2015-01-13 01:01:05'), +(89, 'ta@acsbill.com', 'Tim Altered', 37, '2015-01-13 01:03:09', '2015-01-13 01:03:09'), +(90, 'ta@alexent.com', 'Tim ORG', 37, '2015-01-13 01:03:09', '2015-01-13 01:03:09'), +(91, 'tlac@alexent.com', 'Tamra', 37, '2015-01-13 01:03:09', '2015-01-13 01:03:09'), +(93, 'dk18184@gmail.com', 'Dren', 36, '2015-01-22 06:07:05', '2015-01-22 06:07:05'), +(94, 'dk18184@gmail.com', 'Dren', 33, '2015-01-22 06:07:16', '2015-01-22 06:07:16'), +(95, 'ta@acsbill.com', 'TA Acsbill', 38, '2015-01-24 00:26:33', '2015-01-24 00:26:33'), +(96, 'tlac@alexent.com', 'Tamra', 38, '2015-01-24 00:26:33', '2015-01-24 00:26:33'), +(97, 'ta@alexent.com', 'TA AlexEnt', 38, '2015-01-24 00:26:33', '2015-01-24 00:26:33'), +(98, 'ta@acsbill.com', 'TA Acsbill', 39, '2015-01-24 00:36:28', '2015-01-24 00:36:28'), +(99, 'tlac@alexent.com', 'Tamra', 39, '2015-01-24 00:36:28', '2015-01-24 00:36:28'), +(100, 'ta@alexent.com', 'TA Alexent', 39, '2015-01-24 00:36:28', '2015-01-24 00:36:28'), +(101, 'ta@acsbill.com', 'TA Acsbill', 40, '2015-01-24 00:51:11', '2015-01-24 00:51:11'), +(102, 'tlac@alexent.com', 'Tamra', 40, '2015-01-24 00:51:11', '2015-01-24 00:51:11'), +(103, 'ta@alexent.com', 'TA AlexEnt', 40, '2015-01-24 00:51:11', '2015-01-24 00:51:11'), +(107, 'ta@alexent.com', 'Tim AE', 42, '2015-01-28 23:22:29', '2015-01-28 23:22:29'), +(108, 'ta@acsbill.com', 'Tim ACS', 42, '2015-01-28 23:22:29', '2015-01-28 23:22:29'), +(109, 'tlac@alexent.com', 'Tamra', 42, '2015-01-28 23:22:29', '2015-01-28 23:22:29'), +(110, 'ta@alexent.com', 'Tim', 43, '2015-01-29 08:37:54', '2015-01-29 08:37:54'), +(111, 'ta@alexent.com', 'Tamra', 43, '2015-01-29 08:37:54', '2015-01-29 08:37:54'), +(112, 'ta@alexent.com', 'Tim', 44, '2015-01-29 08:39:02', '2015-01-29 08:39:02'), +(113, 'tlac@alexent.com', 'Tamra', 44, '2015-01-29 08:39:02', '2015-01-29 08:39:02'), +(114, 'tlac@alexent.com', 'Tamra', 43, '2015-01-29 08:39:14', '2015-01-29 08:39:14'), +(115, 'ta@alexent.com', 'Tim', 45, '2015-01-29 09:27:03', '2015-01-29 09:27:03'), +(116, 'tlac@alexent.com', 'Tamra', 45, '2015-01-29 09:27:03', '2015-01-29 09:27:03'), +(117, 'ta@alexent.com', 'Tim', 46, '2015-01-29 09:28:23', '2015-01-29 09:28:23'), +(118, 'tlac@alexent.com', 'Tamra', 46, '2015-01-29 09:28:23', '2015-01-29 09:28:23'), +(119, 'ta@alexent.com', 'Tim', 47, '2015-01-29 09:29:05', '2015-01-29 09:29:05'), +(120, 'tlac@alexent.com', 'Tamra', 47, '2015-01-29 09:29:05', '2015-01-29 09:29:05'), +(121, 'ta@alexent.com', 'Tim', 48, '2015-01-29 09:29:41', '2015-01-29 09:29:41'), +(122, 'tlac@alexent.com', 'Tamra', 48, '2015-01-29 09:29:41', '2015-01-29 09:29:41'); -- -------------------------------------------------------- @@ -45,6 +93,7 @@ CREATE TABLE IF NOT EXISTS `emails_list` ( -- Table structure for table `groups` -- +DROP TABLE IF EXISTS `groups`; CREATE TABLE IF NOT EXISTS `groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, @@ -53,7 +102,29 @@ CREATE TABLE IF NOT EXISTS `groups` ( `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `groups_name_unique` (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ; + +-- +-- Dumping data for table `groups` +-- + +INSERT INTO `groups` (`id`, `name`, `permissions`, `created_at`, `updated_at`) VALUES +(1, 'Admin', '{"admin":1, "sys.create_user":1}', '2014-12-29 07:00:00', '2014-12-29 07:00:00'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `keywords` +-- + +DROP TABLE IF EXISTS `keywords`; +CREATE TABLE IF NOT EXISTS `keywords` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `keyword` int(32) NOT NULL, + `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='This table is only for auto-complete.' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- @@ -61,11 +132,277 @@ CREATE TABLE IF NOT EXISTS `groups` ( -- Table structure for table `keywords_list` -- +DROP TABLE IF EXISTS `keywords_list`; CREATE TABLE IF NOT EXISTS `keywords_list` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `keyword` varchar(255) NOT NULL, + `user_id` int(11) unsigned NOT NULL COMMENT 'Lists for the current logged in users.', + `keywords` varchar(255) NOT NULL COMMENT 'Array of keywords', + `send_automatically` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Send the emails that belong to this keywords.', + `original_content` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'This column tell if the emails associated with this keyword(s) should or shouldn''t include HTML.', + `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=49 ; + +-- +-- Dumping data for table `keywords_list` +-- + +INSERT INTO `keywords_list` (`id`, `user_id`, `keywords`, `send_automatically`, `original_content`, `created_at`, `updated_at`) VALUES +(31, 2, '{"0":"Atascadero","1":"processed"}', 1, 0, '2015-01-13 00:50:06', '2015-01-22 07:14:38'), +(32, 2, '{"0":"california","1":"uploaded"}', 1, 1, '2015-01-13 00:53:48', '2015-01-13 00:53:48'), +(33, 2, '{"0":"california","1":"processed"}', 1, 1, '2015-01-13 00:55:49', '2015-01-22 07:12:08'), +(34, 2, '{"0":"california","1":"approved"}', 1, 1, '2015-01-13 00:58:35', '2015-01-13 00:58:35'), +(35, 2, '{"0":"california","1":"laser"}', 1, 1, '2015-01-13 00:59:49', '2015-01-13 00:59:49'), +(36, 2, '{"0":"california","1":"rejected"}', 1, 1, '2015-01-13 01:01:05', '2015-01-13 01:01:05'), +(37, 2, '{"0":"california","1":"assembly","2":"mailing"}', 1, 1, '2015-01-13 01:03:09', '2015-01-13 01:03:32'), +(38, 2, '{"0":"atascadero","1":"uploaded"}', 1, 0, '2015-01-24 00:26:33', '2015-01-24 00:26:33'), +(39, 2, '{"0":"atascadero","1":"approved"}', 1, 0, '2015-01-24 00:36:28', '2015-01-24 00:36:28'), +(40, 2, '{"0":"atascadero","1":"rejected"}', 1, 0, '2015-01-24 00:51:11', '2015-01-24 00:51:11'), +(42, 2, '{"0":"atascadero","1":"assembly","2":"mailing"}', 1, 0, '2015-01-28 23:22:29', '2015-01-29 01:07:07'), +(43, 2, '{"0":"davis","1":"uploaded"}', 1, 0, '2015-01-29 08:37:54', '2015-01-29 08:37:54'), +(44, 2, '{"0":"davis","1":"processed"}', 1, 1, '2015-01-29 08:39:02', '2015-01-29 09:27:13'), +(45, 2, '{"0":"davis","1":"approved"}', 1, 0, '2015-01-29 09:27:03', '2015-01-29 09:27:03'), +(46, 2, '{"0":"davis","1":"laser"}', 1, 0, '2015-01-29 09:28:23', '2015-01-29 09:28:23'), +(47, 2, '{"0":"davis","1":"rejected"}', 1, 0, '2015-01-29 09:29:05', '2015-01-29 09:29:05'), +(48, 2, '{"0":"davis","1":"assembly","2":"mailing"}', 1, 0, '2015-01-29 09:29:41', '2015-01-29 09:29:41'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `mails` +-- + +DROP TABLE IF EXISTS `mails`; +CREATE TABLE IF NOT EXISTS `mails` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `email_address_id` int(11) NOT NULL, + `subject` longtext, + `body` longtext CHARACTER SET utf8 COLLATE utf8_unicode_ci, + `body_html` varchar(255) DEFAULT NULL, + `optional_text` longtext, + `sender_email` varchar(255) DEFAULT NULL, + `reciver_email` varchar(255) DEFAULT NULL, + `fwd_accept` tinyint(1) NOT NULL DEFAULT '0', + `sent` tinyint(1) NOT NULL DEFAULT '0', + `html` tinyint(1) NOT NULL DEFAULT '0', + `deleted` tinyint(1) NOT NULL DEFAULT '0', + `x_message_id` varchar(255) DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `x_date` varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `x_size` int(255) DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `x_uid` int(32) DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `x_msgno` int(32) DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `x_recent` tinyint(1) DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `x_flagged` tinyint(1) DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `x_answered` tinyint(1) DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `x_deleted` tinyint(1) DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `x_seen` tinyint(1) DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `x_draft` tinyint(1) DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `x_udate` int(255) DEFAULT NULL COMMENT 'This Column belongs to actual mail information.', + `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`id`), + KEY `__message_id` (`x_message_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=195 ; + +-- +-- Dumping data for table `mails` +-- + +INSERT INTO `mails` (`id`, `email_address_id`, `subject`, `body`, `body_html`, `optional_text`, `sender_email`, `reciver_email`, `fwd_accept`, `sent`, `html`, `deleted`, `x_message_id`, `x_date`, `x_size`, `x_uid`, `x_msgno`, `x_recent`, `x_flagged`, `x_answered`, `x_deleted`, `x_seen`, `x_draft`, `x_udate`, `created_at`, `updated_at`) VALUES +(1, 16, 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 2:24 PM on 10/25/2014.

\nItems 1-9604 having a quantity of 9604 were mailed at 10/25/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22548367.491351414265091389.JavaMail.humprey@keats.sebis.com>', 'Sat, 25 Oct 2014 14:24:51 -0500 ', 1637, 14, 14, 0, 0, 0, 0, 1, 0, 1414265100, '2014-11-30 21:30:13', '2014-11-30 21:31:17'), +(2, 17, 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 2:24 PM on 10/25/2014.

\nItems 1-9604 having a quantity of 9604 were mailed at 10/25/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22548367.491351414265091389.JavaMail.humprey@keats.sebis.com>', 'Sat, 25 Oct 2014 14:24:51 -0500 ', 1637, 14, 14, 0, 0, 0, 0, 1, 0, 1414265100, '2014-11-30 21:30:13', '2014-11-30 21:31:28'), +(3, 18, 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 2:24 PM on 10/25/2014.

\nItems 1-9604 having a quantity of 9604 were mailed at 10/25/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22548367.491351414265091389.JavaMail.humprey@keats.sebis.com>', 'Sat, 25 Oct 2014 14:24:51 -0500 ', 1637, 14, 14, 0, 0, 0, 0, 1, 0, 1414265100, '2014-11-30 21:30:13', '2014-11-30 21:31:34'), +(4, 16, 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 10:56 AM on 11/26/2014.

\nItems 1-9594 having a quantity of 9594 were mailed at 11/26/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<31784077.54001417020977598.JavaMail.humprey@keats.sebis.com>', 'Wed, 26 Nov 2014 10:56:17 -0600 ', 1637, 37, 37, 0, 0, 0, 0, 1, 0, 1417020981, '2014-11-30 21:30:13', '2014-11-30 21:31:25'), +(5, 17, 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 10:56 AM on 11/26/2014.

\nItems 1-9594 having a quantity of 9594 were mailed at 11/26/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<31784077.54001417020977598.JavaMail.humprey@keats.sebis.com>', 'Wed, 26 Nov 2014 10:56:17 -0600 ', 1637, 37, 37, 0, 0, 0, 0, 1, 0, 1417020981, '2014-11-30 21:30:13', '2014-11-30 21:31:31'), +(6, 18, 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 10:56 AM on 11/26/2014.

\nItems 1-9594 having a quantity of 9594 were mailed at 11/26/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<31784077.54001417020977598.JavaMail.humprey@keats.sebis.com>', 'Wed, 26 Nov 2014 10:56:17 -0600 ', 1637, 37, 37, 0, 0, 0, 0, 1, 0, 1417020981, '2014-11-30 21:30:13', '2014-11-30 21:31:36'), +(7, 1, 'File Uploaded to CALCTY: California City Application', 'The file CalCity_20141110.zip of filesize 460333 was uploaded to application CALCTY : California City Application
by username: tlac at 10/17/2014 22:05
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22694752.2011413601557541.JavaMail.humprey@mail.sebis.com>', 'Fri, 17 Oct 2014 22:05:57 -0500 ', 1308, 1, 1, 0, 0, 0, 0, 1, 0, 1413601565, '2014-11-30 21:33:34', '2014-11-30 21:33:38'), +(8, 6, 'File Uploaded to CALCTY: California City Application', 'The file CalCity_20141110.zip of filesize 460333 was uploaded to application CALCTY : California City Application
by username: tlac at 10/17/2014 22:05
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22694752.2011413601557541.JavaMail.humprey@mail.sebis.com>', 'Fri, 17 Oct 2014 22:05:57 -0500 ', 1308, 1, 1, 0, 0, 0, 0, 1, 0, 1413601565, '2014-11-30 21:33:34', '2014-12-01 07:00:33'), +(9, 11, 'File Uploaded to CALCTY: California City Application', 'The file CalCity_20141110.zip of filesize 460333 was uploaded to application CALCTY : California City Application
by username: tlac at 10/17/2014 22:05
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22694752.2011413601557541.JavaMail.humprey@mail.sebis.com>', 'Fri, 17 Oct 2014 22:05:57 -0500 ', 1308, 1, 1, 0, 0, 0, 0, 1, 0, 1413601565, '2014-11-30 21:33:34', '2014-11-30 21:34:21'), +(10, 1, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201410172206
date/time : Fri-Oct-17-2014 10:54:00

Process Message










Sheets Per Outer Envelope
10123409315661
11120142172
12221151191
131
Totals
Total Records Printed:3945 Total Records Processed:4247
Receiving a reply envelope:3439    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<15691560.429001413604446260.JavaMail.humprey@keats.sebis.com>', 'Fri, 17 Oct 2014 22:54:06 -0500 ', 6506, 2, 2, 0, 0, 0, 0, 1, 0, 1413604453, '2014-11-30 21:33:34', '2014-11-30 21:33:42'), +(11, 6, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201410172206
date/time : Fri-Oct-17-2014 10:54:00

Process Message










Sheets Per Outer Envelope
10123409315661
11120142172
12221151191
131
Totals
Total Records Printed:3945 Total Records Processed:4247
Receiving a reply envelope:3439    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<15691560.429001413604446260.JavaMail.humprey@keats.sebis.com>', 'Fri, 17 Oct 2014 22:54:06 -0500 ', 6506, 2, 2, 0, 0, 0, 0, 1, 0, 1413604453, '2014-11-30 21:33:34', '2014-12-01 07:00:35'), +(12, 11, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201410172206
date/time : Fri-Oct-17-2014 10:54:00

Process Message










Sheets Per Outer Envelope
10123409315661
11120142172
12221151191
131
Totals
Total Records Printed:3945 Total Records Processed:4247
Receiving a reply envelope:3439    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<15691560.429001413604446260.JavaMail.humprey@keats.sebis.com>', 'Fri, 17 Oct 2014 22:54:06 -0500 ', 6506, 2, 2, 0, 0, 0, 0, 1, 0, 1413604453, '2014-11-30 21:33:34', '2014-11-30 21:34:24'), +(13, 1, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201410200936
date/time : Mon-Oct-20-2014 10:32:01

Process Message










Sheets Per Outer Envelope
13408131315661
10120142172
11121151191
122
Totals
Total Records Printed:3944 Total Records Processed:4247
Receiving a reply envelope:3435    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22138084.437291413819129864.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 10:32:09 -0500 ', 6506, 3, 3, 0, 0, 0, 0, 1, 0, 1413819136, '2014-11-30 21:33:34', '2014-11-30 21:33:45'), +(14, 6, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201410200936
date/time : Mon-Oct-20-2014 10:32:01

Process Message










Sheets Per Outer Envelope
13408131315661
10120142172
11121151191
122
Totals
Total Records Printed:3944 Total Records Processed:4247
Receiving a reply envelope:3435    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22138084.437291413819129864.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 10:32:09 -0500 ', 6506, 3, 3, 0, 0, 0, 0, 1, 0, 1413819136, '2014-11-30 21:33:34', '2014-12-01 07:00:37'), +(15, 11, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201410200936
date/time : Mon-Oct-20-2014 10:32:01

Process Message










Sheets Per Outer Envelope
13408131315661
10120142172
11121151191
122
Totals
Total Records Printed:3944 Total Records Processed:4247
Receiving a reply envelope:3435    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22138084.437291413819129864.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 10:32:09 -0500 ', 6506, 3, 3, 0, 0, 0, 0, 1, 0, 1413819136, '2014-11-30 21:33:34', '2014-12-01 07:00:03'), +(16, 1, 'Application CALCTY: California City Application REJECTED.', '\n\nRemarks regarding the denial of approval:
\nCorrection in message content per Cindy
\n\nHere are the process results.
\n\n\n\nClick here to examine the process.
\n
\n\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<12633302.1401413823950853.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 11:52:30 -0500 ', 1838, 4, 4, 0, 0, 0, 0, 1, 0, 1413823953, '2014-11-30 21:33:34', '2014-11-30 21:33:48'), +(17, 6, 'Application CALCTY: California City Application REJECTED.', '\n\nRemarks regarding the denial of approval:
\nCorrection in message content per Cindy
\n\nHere are the process results.
\n\n\n\nClick here to examine the process.
\n
\n\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<12633302.1401413823950853.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 11:52:30 -0500 ', 1838, 4, 4, 0, 0, 0, 0, 1, 0, 1413823953, '2014-11-30 21:33:34', '2014-12-01 07:00:40'), +(18, 11, 'Application CALCTY: California City Application REJECTED.', '\n\nRemarks regarding the denial of approval:
\nCorrection in message content per Cindy
\n\nHere are the process results.
\n\n\n\nClick here to examine the process.
\n
\n\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<12633302.1401413823950853.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 11:52:30 -0500 ', 1838, 4, 4, 0, 0, 0, 0, 1, 0, 1413823953, '2014-11-30 21:33:34', '2014-12-01 07:00:08'), +(19, 1, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201410200936
date/time : Mon-Oct-20-2014 03:16:03

Process Message










Sheets Per Outer Envelope
13408131315661
10120142172
11121151191
122
Totals
Total Records Printed:3944 Total Records Processed:4247
Receiving a reply envelope:3435    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<17478349.442991413836178352.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 15:16:18 -0500 ', 6506, 5, 5, 0, 0, 0, 0, 1, 0, 1413836184, '2014-11-30 21:33:34', '2014-11-30 21:33:51'), +(20, 6, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201410200936
date/time : Mon-Oct-20-2014 03:16:03

Process Message










Sheets Per Outer Envelope
13408131315661
10120142172
11121151191
122
Totals
Total Records Printed:3944 Total Records Processed:4247
Receiving a reply envelope:3435    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<17478349.442991413836178352.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 15:16:18 -0500 ', 6506, 5, 5, 0, 0, 0, 0, 1, 0, 1413836184, '2014-11-30 21:33:34', '2014-12-01 07:00:42'); +INSERT INTO `mails` (`id`, `email_address_id`, `subject`, `body`, `body_html`, `optional_text`, `sender_email`, `reciver_email`, `fwd_accept`, `sent`, `html`, `deleted`, `x_message_id`, `x_date`, `x_size`, `x_uid`, `x_msgno`, `x_recent`, `x_flagged`, `x_answered`, `x_deleted`, `x_seen`, `x_draft`, `x_udate`, `created_at`, `updated_at`) VALUES +(21, 11, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201410200936
date/time : Mon-Oct-20-2014 03:16:03

Process Message










Sheets Per Outer Envelope
13408131315661
10120142172
11121151191
122
Totals
Total Records Printed:3944 Total Records Processed:4247
Receiving a reply envelope:3435    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<17478349.442991413836178352.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 15:16:18 -0500 ', 6506, 5, 5, 0, 0, 0, 0, 1, 0, 1413836184, '2014-11-30 21:33:34', '2014-12-01 07:00:10'), +(22, 1, 'Application Results CALCTY: California City Application approved.', 'Run 201410200936 for the application CALCTY : California City Application
has been approved by username: tlac at 10/20/2014 15:51
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<9504590.3041413838301450.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 15:51:41 -0500 ', 1709, 6, 6, 0, 0, 0, 0, 1, 0, 1413838304, '2014-11-30 21:33:35', '2014-11-30 21:33:54'), +(23, 6, 'Application Results CALCTY: California City Application approved.', 'Run 201410200936 for the application CALCTY : California City Application
has been approved by username: tlac at 10/20/2014 15:51
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<9504590.3041413838301450.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 15:51:41 -0500 ', 1709, 6, 6, 0, 0, 0, 0, 1, 0, 1413838304, '2014-11-30 21:33:35', '2014-12-01 07:00:44'), +(24, 11, 'Application Results CALCTY: California City Application approved.', 'Run 201410200936 for the application CALCTY : California City Application
has been approved by username: tlac at 10/20/2014 15:51
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<9504590.3041413838301450.JavaMail.humprey@keats.sebis.com>', 'Mon, 20 Oct 2014 15:51:41 -0500 ', 1709, 6, 6, 0, 0, 0, 0, 1, 0, 1413838304, '2014-11-30 21:33:35', '2014-12-01 07:00:12'), +(25, 1, 'Assembly & Mailing for job California City Utility Billing - October 2014 Segment:MAIN completed.', 'Assembly & Mailing for job California City Utility Billing - October 2014 and segment MAIN and application California City Application
\nwas completed at 8:05 PM on 10/21/2014.

\nItems 1-3607 having a quantity of 3607 were mailed at 10/22/2014 9:00 AM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<7235097.455891413939935237.JavaMail.humprey@keats.sebis.com>', 'Tue, 21 Oct 2014 20:05:35 -0500 ', 1646, 7, 7, 0, 0, 0, 0, 1, 0, 1413939941, '2014-11-30 21:33:35', '2014-11-30 21:33:57'), +(26, 6, 'Assembly & Mailing for job California City Utility Billing - October 2014 Segment:MAIN completed.', 'Assembly & Mailing for job California City Utility Billing - October 2014 and segment MAIN and application California City Application
\nwas completed at 8:05 PM on 10/21/2014.

\nItems 1-3607 having a quantity of 3607 were mailed at 10/22/2014 9:00 AM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<7235097.455891413939935237.JavaMail.humprey@keats.sebis.com>', 'Tue, 21 Oct 2014 20:05:35 -0500 ', 1646, 7, 7, 0, 0, 0, 0, 1, 0, 1413939941, '2014-11-30 21:33:35', '2014-12-01 07:00:47'), +(27, 11, 'Assembly & Mailing for job California City Utility Billing - October 2014 Segment:MAIN completed.', 'Assembly & Mailing for job California City Utility Billing - October 2014 and segment MAIN and application California City Application
\nwas completed at 8:05 PM on 10/21/2014.

\nItems 1-3607 having a quantity of 3607 were mailed at 10/22/2014 9:00 AM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<7235097.455891413939935237.JavaMail.humprey@keats.sebis.com>', 'Tue, 21 Oct 2014 20:05:35 -0500 ', 1646, 7, 7, 0, 0, 0, 0, 1, 0, 1413939941, '2014-11-30 21:33:35', '2014-12-01 07:00:15'), +(28, 16, 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 2:24 PM on 10/25/2014.

\nItems 1-9604 having a quantity of 9604 were mailed at 10/25/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22548367.491351414265091389.JavaMail.humprey@keats.sebis.com>', 'Sat, 25 Oct 2014 14:24:51 -0500 ', 1637, 14, 14, 0, 0, 0, 0, 1, 0, 1414265100, '2014-11-30 21:33:35', '2014-11-30 21:34:00'), +(29, 17, 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 2:24 PM on 10/25/2014.

\nItems 1-9604 having a quantity of 9604 were mailed at 10/25/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22548367.491351414265091389.JavaMail.humprey@keats.sebis.com>', 'Sat, 25 Oct 2014 14:24:51 -0500 ', 1637, 14, 14, 0, 0, 0, 0, 1, 0, 1414265100, '2014-11-30 21:33:35', '2014-12-01 07:00:17'), +(30, 18, 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - October 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 2:24 PM on 10/25/2014.

\nItems 1-9604 having a quantity of 9604 were mailed at 10/25/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<22548367.491351414265091389.JavaMail.humprey@keats.sebis.com>', 'Sat, 25 Oct 2014 14:24:51 -0500 ', 1637, 14, 14, 0, 0, 0, 0, 1, 0, 1414265100, '2014-11-30 21:33:35', '2014-12-01 07:00:49'), +(31, 1, 'File Uploaded to CALCTY: California City Application', 'The file CalCity_20141210.zip of filesize 420294 was uploaded to application CALCTY : California City Application
by username: talexander at 11/18/2014 19:11
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<20995746.19701416359482021.JavaMail.humprey@keats.sebis.com>', 'Tue, 18 Nov 2014 19:11:22 -0600 ', 1315, 27, 27, 0, 0, 0, 0, 1, 0, 1416359487, '2014-11-30 21:33:35', '2014-11-30 21:34:03'), +(32, 6, 'File Uploaded to CALCTY: California City Application', 'The file CalCity_20141210.zip of filesize 420294 was uploaded to application CALCTY : California City Application
by username: talexander at 11/18/2014 19:11
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<20995746.19701416359482021.JavaMail.humprey@keats.sebis.com>', 'Tue, 18 Nov 2014 19:11:22 -0600 ', 1315, 27, 27, 0, 0, 0, 0, 1, 0, 1416359487, '2014-11-30 21:33:35', '2014-12-01 07:00:51'), +(33, 11, 'File Uploaded to CALCTY: California City Application', 'The file CalCity_20141210.zip of filesize 420294 was uploaded to application CALCTY : California City Application
by username: talexander at 11/18/2014 19:11
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<20995746.19701416359482021.JavaMail.humprey@keats.sebis.com>', 'Tue, 18 Nov 2014 19:11:22 -0600 ', 1315, 27, 27, 0, 0, 0, 0, 1, 0, 1416359487, '2014-11-30 21:33:35', '2014-12-01 07:00:19'), +(34, 1, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201411190926
date/time : Wed-Nov-19-2014 10:16:01

Process Message










Sheets Per Outer Envelope
1012341342362
11223151172
122315256181
191
Totals
Total Records Printed:4005 Total Records Processed:4323
Receiving a reply envelope:3494    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<9812162.692361416413765157.JavaMail.humprey@keats.sebis.com>', 'Wed, 19 Nov 2014 10:16:05 -0600 ', 6505, 28, 28, 0, 0, 0, 0, 1, 0, 1416413772, '2014-11-30 21:33:35', '2014-11-30 21:34:06'), +(35, 6, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201411190926
date/time : Wed-Nov-19-2014 10:16:01

Process Message










Sheets Per Outer Envelope
1012341342362
11223151172
122315256181
191
Totals
Total Records Printed:4005 Total Records Processed:4323
Receiving a reply envelope:3494    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<9812162.692361416413765157.JavaMail.humprey@keats.sebis.com>', 'Wed, 19 Nov 2014 10:16:05 -0600 ', 6505, 28, 28, 0, 0, 0, 0, 1, 0, 1416413772, '2014-11-30 21:33:35', '2014-12-01 07:00:53'), +(36, 11, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201411190926
date/time : Wed-Nov-19-2014 10:16:01

Process Message










Sheets Per Outer Envelope
1012341342362
11223151172
122315256181
191
Totals
Total Records Printed:4005 Total Records Processed:4323
Receiving a reply envelope:3494    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<9812162.692361416413765157.JavaMail.humprey@keats.sebis.com>', 'Wed, 19 Nov 2014 10:16:05 -0600 ', 6505, 28, 28, 0, 0, 0, 0, 1, 0, 1416413772, '2014-11-30 21:33:35', '2014-12-01 07:00:22'), +(37, 1, 'Application Results CALCTY: California City Application approved.', 'Run 201411190926 for the application CALCTY : California City Application
has been approved by username: talexander at 11/20/2014 15:35
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<20658178.29571416519347476.JavaMail.humprey@keats.sebis.com>', 'Thu, 20 Nov 2014 15:35:47 -0600 ', 1736, 29, 29, 0, 0, 0, 0, 1, 0, 1416519351, '2014-11-30 21:33:35', '2014-11-30 21:34:09'), +(38, 6, 'Application Results CALCTY: California City Application approved.', 'Run 201411190926 for the application CALCTY : California City Application
has been approved by username: talexander at 11/20/2014 15:35
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<20658178.29571416519347476.JavaMail.humprey@keats.sebis.com>', 'Thu, 20 Nov 2014 15:35:47 -0600 ', 1736, 29, 29, 0, 0, 0, 0, 1, 0, 1416519351, '2014-11-30 21:33:35', '2014-12-01 07:00:56'), +(39, 11, 'Application Results CALCTY: California City Application approved.', 'Run 201411190926 for the application CALCTY : California City Application
has been approved by username: talexander at 11/20/2014 15:35
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<20658178.29571416519347476.JavaMail.humprey@keats.sebis.com>', 'Thu, 20 Nov 2014 15:35:47 -0600 ', 1736, 29, 29, 0, 0, 0, 0, 1, 0, 1416519351, '2014-11-30 21:33:35', '2014-12-01 07:00:24'), +(40, 1, 'Laser Imaging for job California City Utility Billing - November 2014 Segment:MAIN completed.', 'Laser imaging for job California City Utility Billing - November 2014 and segment MAIN and application California City Application
\nwas completed by tmoran at 2014-11-20 21:26:50.285093.\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<2541063.30451416541368717.JavaMail.humprey@keats.sebis.com>', 'Thu, 20 Nov 2014 21:42:48 -0600 ', 1362, 30, 30, 0, 0, 0, 0, 1, 0, 1416541373, '2014-11-30 21:33:35', '2014-11-30 21:34:12'), +(41, 6, 'Laser Imaging for job California City Utility Billing - November 2014 Segment:MAIN completed.', 'Laser imaging for job California City Utility Billing - November 2014 and segment MAIN and application California City Application
\nwas completed by tmoran at 2014-11-20 21:26:50.285093.\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<2541063.30451416541368717.JavaMail.humprey@keats.sebis.com>', 'Thu, 20 Nov 2014 21:42:48 -0600 ', 1362, 30, 30, 0, 0, 0, 0, 1, 0, 1416541373, '2014-11-30 21:33:35', '2014-12-01 07:00:58'), +(42, 11, 'Laser Imaging for job California City Utility Billing - November 2014 Segment:MAIN completed.', 'Laser imaging for job California City Utility Billing - November 2014 and segment MAIN and application California City Application
\nwas completed by tmoran at 2014-11-20 21:26:50.285093.\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<2541063.30451416541368717.JavaMail.humprey@keats.sebis.com>', 'Thu, 20 Nov 2014 21:42:48 -0600 ', 1362, 30, 30, 0, 0, 0, 0, 1, 0, 1416541373, '2014-11-30 21:33:35', '2014-12-01 07:00:26'), +(43, 1, 'Assembly & Mailing for job California City Utility Billing - November 2014 Segment:MAIN completed.', 'Assembly & Mailing for job California City Utility Billing - November 2014 and segment MAIN and application California City Application
\nwas completed at 10:55 AM on 11/21/2014.

\nItems 1-3612 having a quantity of 3612 were mailed at 11/21/2014 7:00 AM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<1433202.33091416588929424.JavaMail.humprey@keats.sebis.com>', 'Fri, 21 Nov 2014 10:55:29 -0600 ', 1646, 31, 31, 0, 0, 0, 0, 1, 0, 1416588933, '2014-11-30 21:33:35', '2014-11-30 21:34:15'), +(44, 6, 'Assembly & Mailing for job California City Utility Billing - November 2014 Segment:MAIN completed.', 'Assembly & Mailing for job California City Utility Billing - November 2014 and segment MAIN and application California City Application
\nwas completed at 10:55 AM on 11/21/2014.

\nItems 1-3612 having a quantity of 3612 were mailed at 11/21/2014 7:00 AM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<1433202.33091416588929424.JavaMail.humprey@keats.sebis.com>', 'Fri, 21 Nov 2014 10:55:29 -0600 ', 1646, 31, 31, 0, 0, 0, 0, 1, 0, 1416588933, '2014-11-30 21:33:35', '2014-12-01 07:01:00'), +(45, 11, 'Assembly & Mailing for job California City Utility Billing - November 2014 Segment:MAIN completed.', 'Assembly & Mailing for job California City Utility Billing - November 2014 and segment MAIN and application California City Application
\nwas completed at 10:55 AM on 11/21/2014.

\nItems 1-3612 having a quantity of 3612 were mailed at 11/21/2014 7:00 AM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<1433202.33091416588929424.JavaMail.humprey@keats.sebis.com>', 'Fri, 21 Nov 2014 10:55:29 -0600 ', 1646, 31, 31, 0, 0, 0, 0, 1, 0, 1416588933, '2014-11-30 21:33:36', '2014-12-01 07:00:28'), +(46, 16, 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 10:56 AM on 11/26/2014.

\nItems 1-9594 having a quantity of 9594 were mailed at 11/26/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<31784077.54001417020977598.JavaMail.humprey@keats.sebis.com>', 'Wed, 26 Nov 2014 10:56:17 -0600 ', 1637, 37, 37, 0, 0, 0, 0, 1, 0, 1417020981, '2014-11-30 21:33:36', '2014-11-30 21:34:18'), +(47, 17, 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 10:56 AM on 11/26/2014.

\nItems 1-9594 having a quantity of 9594 were mailed at 11/26/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<31784077.54001417020977598.JavaMail.humprey@keats.sebis.com>', 'Wed, 26 Nov 2014 10:56:17 -0600 ', 1637, 37, 37, 0, 0, 0, 0, 1, 0, 1417020981, '2014-11-30 21:33:36', '2014-12-01 07:00:31'), +(48, 18, 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - November 2014 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 10:56 AM on 11/26/2014.

\nItems 1-9594 having a quantity of 9594 were mailed at 11/26/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<31784077.54001417020977598.JavaMail.humprey@keats.sebis.com>', 'Wed, 26 Nov 2014 10:56:17 -0600 ', 1637, 37, 37, 0, 0, 0, 0, 1, 0, 1417020981, '2014-11-30 21:33:36', '2014-12-01 07:01:02'), +(49, 40, 'File Uploaded to CALCTY: California City Application', 'The file CaCity_20150105.zip of filesize 415792 was uploaded to application CALCTY : California City Application\nby username: talexander at 12/16/2014 13:32\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<26436288.1811418758343544.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 13:32:23 -0600 ', 1313, 40, 40, 1, 0, 0, 0, 0, 0, 1418758347, '2014-12-17 02:33:03', '2014-12-17 02:34:06'), +(50, 41, 'File Uploaded to CALCTY: California City Application', 'The file CaCity_20150105.zip of filesize 415792 was uploaded to application CALCTY : California City Application\nby username: talexander at 12/16/2014 13:32\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<26436288.1811418758343544.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 13:32:23 -0600 ', 1313, 40, 40, 1, 0, 0, 0, 0, 0, 1418758347, '2014-12-17 02:33:03', '2014-12-17 02:34:09'), +(51, 42, 'File Uploaded to CALCTY: California City Application', 'The file CaCity_20150105.zip of filesize 415792 was uploaded to application CALCTY : California City Application\nby username: talexander at 12/16/2014 13:32\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<26436288.1811418758343544.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 13:32:23 -0600 ', 1313, 40, 40, 1, 0, 0, 0, 0, 0, 1418758347, '2014-12-17 02:33:03', '2014-12-17 02:34:02'), +(52, 40, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : CALCTYrun id : 201412161522date/time : Tue-Dec-16-2014 04:46:03\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets Per Outer Envelope1212343457711313141551811814236692191 TotalsTotal Records Printed:3984 Total Records Processed:4305Receiving a reply envelope:3495    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<23185909.2381418769967695.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 16:46:07 -0600 ', 6501, 41, 41, 1, 0, 0, 0, 0, 0, 1418769973, '2014-12-17 05:47:02', '2014-12-17 05:48:05'), +(53, 41, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : CALCTYrun id : 201412161522date/time : Tue-Dec-16-2014 04:46:03\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets Per Outer Envelope1212343457711313141551811814236692191 TotalsTotal Records Printed:3984 Total Records Processed:4305Receiving a reply envelope:3495    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<23185909.2381418769967695.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 16:46:07 -0600 ', 6501, 41, 41, 1, 0, 0, 0, 0, 0, 1418769973, '2014-12-17 05:47:02', '2014-12-17 05:48:08'), +(54, 42, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : CALCTYrun id : 201412161522date/time : Tue-Dec-16-2014 04:46:03\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets Per Outer Envelope1212343457711313141551811814236692191 TotalsTotal Records Printed:3984 Total Records Processed:4305Receiving a reply envelope:3495    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<23185909.2381418769967695.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 16:46:07 -0600 ', 6501, 41, 41, 1, 0, 0, 0, 0, 0, 1418769973, '2014-12-17 05:47:02', '2014-12-17 05:48:01'), +(55, 40, 'Application CALCTY: California City Application REJECTED.', 'Run 201412161522 for the application CALCTY : California City Application\nhas been REJECTED by username: talexander at 12/16/2014 17:13\n\n\n\nRemarks regarding the denial of approval:\n\nThe insert should have been removed\n\n\nHere are the process results.\n\n\n\n\nClick here to examine the process.\n\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<5823381.3541418771590120.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 17:13:10 -0600 ', 1857, 42, 42, 1, 0, 0, 0, 0, 0, 1418771593, '2014-12-17 06:14:02', '2014-12-17 06:15:05'), +(56, 41, 'Application CALCTY: California City Application REJECTED.', 'Run 201412161522 for the application CALCTY : California City Application\nhas been REJECTED by username: talexander at 12/16/2014 17:13\n\n\n\nRemarks regarding the denial of approval:\n\nThe insert should have been removed\n\n\nHere are the process results.\n\n\n\n\nClick here to examine the process.\n\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<5823381.3541418771590120.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 17:13:10 -0600 ', 1857, 42, 42, 1, 0, 0, 0, 0, 0, 1418771593, '2014-12-17 06:14:02', '2014-12-17 06:15:07'), +(57, 42, 'Application CALCTY: California City Application REJECTED.', 'Run 201412161522 for the application CALCTY : California City Application\nhas been REJECTED by username: talexander at 12/16/2014 17:13\n\n\n\nRemarks regarding the denial of approval:\n\nThe insert should have been removed\n\n\nHere are the process results.\n\n\n\n\nClick here to examine the process.\n\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<5823381.3541418771590120.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 17:13:10 -0600 ', 1857, 42, 42, 1, 0, 0, 0, 0, 0, 1418771593, '2014-12-17 06:14:02', '2014-12-17 06:15:02'), +(58, 40, 'File Uploaded to CALCTY: California City Application', 'The file CaCity_20150105.zip of filesize 415792 was uploaded to application CALCTY : California City Application\nby username: talexander at 12/16/2014 17:15\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<1116175.3581418771721109.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 17:15:21 -0600 ', 1311, 43, 43, 1, 0, 0, 0, 0, 0, 1418771724, '2014-12-17 06:16:02', '2014-12-17 06:16:05'), +(59, 41, 'File Uploaded to CALCTY: California City Application', 'The file CaCity_20150105.zip of filesize 415792 was uploaded to application CALCTY : California City Application\nby username: talexander at 12/16/2014 17:15\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<1116175.3581418771721109.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 17:15:21 -0600 ', 1311, 43, 43, 1, 0, 0, 0, 0, 0, 1418771724, '2014-12-17 06:16:02', '2014-12-17 06:16:07'), +(60, 42, 'File Uploaded to CALCTY: California City Application', 'The file CaCity_20150105.zip of filesize 415792 was uploaded to application CALCTY : California City Application\nby username: talexander at 12/16/2014 17:15\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<1116175.3581418771721109.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 17:15:21 -0600 ', 1311, 43, 43, 1, 0, 0, 0, 0, 0, 1418771724, '2014-12-17 06:16:02', '2014-12-17 06:16:02'), +(61, 40, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : CALCTYrun id : 201412161717date/time : Tue-Dec-16-2014 06:17:03\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets Per Outer Envelope1343419157711213141551811314236692181 TotalsTotal Records Printed:3984 Total Records Processed:4305Receiving a reply envelope:3495    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<14754744.2661418775432003.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 18:17:12 -0600 ', 6501, 44, 44, 1, 0, 0, 0, 0, 0, 1418775436, '2014-12-17 07:18:02', '2014-12-17 07:20:03'); +INSERT INTO `mails` (`id`, `email_address_id`, `subject`, `body`, `body_html`, `optional_text`, `sender_email`, `reciver_email`, `fwd_accept`, `sent`, `html`, `deleted`, `x_message_id`, `x_date`, `x_size`, `x_uid`, `x_msgno`, `x_recent`, `x_flagged`, `x_answered`, `x_deleted`, `x_seen`, `x_draft`, `x_udate`, `created_at`, `updated_at`) VALUES +(62, 41, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : CALCTYrun id : 201412161717date/time : Tue-Dec-16-2014 06:17:03\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets Per Outer Envelope1343419157711213141551811314236692181 TotalsTotal Records Printed:3984 Total Records Processed:4305Receiving a reply envelope:3495    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<14754744.2661418775432003.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 18:17:12 -0600 ', 6501, 44, 44, 1, 0, 0, 0, 0, 0, 1418775436, '2014-12-17 07:18:02', '2014-12-17 07:20:06'), +(63, 42, 'Application CALCTY: California City Application processed.', 'The application CALCTY: California City Application has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : CALCTYrun id : 201412161717date/time : Tue-Dec-16-2014 06:17:03\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets Per Outer Envelope1343419157711213141551811314236692181 TotalsTotal Records Printed:3984 Total Records Processed:4305Receiving a reply envelope:3495    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<14754744.2661418775432003.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 18:17:12 -0600 ', 6501, 44, 44, 1, 0, 0, 0, 0, 0, 1418775436, '2014-12-17 07:18:02', '2014-12-17 07:20:02'), +(64, 40, 'Application Results CALCTY: California City Application approved.', 'Run 201412161717 for the application CALCTY : California City Application\nhas been approved by username: talexander at 12/16/2014 18:23\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<9908778.4071418775796297.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 18:23:16 -0600 ', 1733, 45, 45, 1, 0, 0, 0, 0, 0, 1418775802, '2014-12-17 07:24:02', '2014-12-24 08:40:11'), +(65, 41, 'Application Results CALCTY: California City Application approved.', 'Run 201412161717 for the application CALCTY : California City Application\nhas been approved by username: talexander at 12/16/2014 18:23\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<9908778.4071418775796297.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 18:23:16 -0600 ', 1733, 45, 45, 1, 0, 0, 0, 0, 0, 1418775802, '2014-12-17 07:24:02', '2014-12-24 08:40:11'), +(66, 42, 'Application Results CALCTY: California City Application approved.', 'Run 201412161717 for the application CALCTY : California City Application\nhas been approved by username: talexander at 12/16/2014 18:23\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<9908778.4071418775796297.JavaMail.humprey@keats.sebis.com>', 'Tue, 16 Dec 2014 18:23:16 -0600 ', 1733, 45, 45, 1, 0, 0, 0, 0, 0, 1418775802, '2014-12-17 07:24:02', '2014-12-24 08:40:11'), +(67, 40, 'Laser Imaging for job California City Utility Billing - December 2014 Segment:MAIN completed.', 'Laser imaging for job California City Utility Billing - December 2014 and segment MAIN and application California City Application\n\nwas completed by tmoran at 2014-12-17 15:42:14.441917.', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<18222886.8991418854881421.JavaMail.humprey@keats.sebis.com>', 'Wed, 17 Dec 2014 16:21:21 -0600 ', 1362, 46, 46, 1, 0, 0, 0, 0, 0, 1418854885, '2014-12-18 05:22:03', '2014-12-18 05:24:07'), +(68, 41, 'Laser Imaging for job California City Utility Billing - December 2014 Segment:MAIN completed.', 'Laser imaging for job California City Utility Billing - December 2014 and segment MAIN and application California City Application\n\nwas completed by tmoran at 2014-12-17 15:42:14.441917.', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<18222886.8991418854881421.JavaMail.humprey@keats.sebis.com>', 'Wed, 17 Dec 2014 16:21:21 -0600 ', 1362, 46, 46, 1, 0, 0, 0, 0, 0, 1418854885, '2014-12-18 05:22:03', '2014-12-18 05:24:09'), +(69, 42, 'Laser Imaging for job California City Utility Billing - December 2014 Segment:MAIN completed.', 'Laser imaging for job California City Utility Billing - December 2014 and segment MAIN and application California City Application\n\nwas completed by tmoran at 2014-12-17 15:42:14.441917.', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<18222886.8991418854881421.JavaMail.humprey@keats.sebis.com>', 'Wed, 17 Dec 2014 16:21:21 -0600 ', 1362, 46, 46, 1, 0, 0, 0, 0, 0, 1418854885, '2014-12-18 05:22:03', '2014-12-18 05:24:02'), +(70, 40, 'Assembly & Mailing for job California City Utility Billing - December 2014 Segment:MAIN completed.', 'Assembly & Mailing for job California City Utility Billing - December 2014 and segment MAIN and application California City Application was completed at 7:44 PM on 12/18/2014. Items 1-3620 having a quantity of 3620 were mailed at 12/19/2014 9:00 AM. Click here to examine the task.', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<25385963.22101418953492268.JavaMail.humprey@keats.sebis.com>', 'Thu, 18 Dec 2014 19:44:52 -0600 ', 1648, 47, 47, 1, 0, 0, 0, 0, 0, 1418953497, '2014-12-19 08:45:06', '2014-12-24 08:36:51'), +(71, 41, 'Assembly & Mailing for job California City Utility Billing - December 2014 Segment:MAIN completed.', 'Assembly & Mailing for job California City Utility Billing - December 2014 and segment MAIN and application California City Application was completed at 7:44 PM on 12/18/2014. Items 1-3620 having a quantity of 3620 were mailed at 12/19/2014 9:00 AM. Click here to examine the task.', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<25385963.22101418953492268.JavaMail.humprey@keats.sebis.com>', 'Thu, 18 Dec 2014 19:44:52 -0600 ', 1648, 47, 47, 1, 0, 0, 0, 0, 0, 1418953497, '2014-12-19 08:45:06', '2014-12-24 08:36:51'), +(72, 42, 'Assembly & Mailing for job California City Utility Billing - December 2014 Segment:MAIN completed.', 'Assembly & Mailing for job California City Utility Billing - December 2014 and segment MAIN and application California City Application was completed at 7:44 PM on 12/18/2014. Items 1-3620 having a quantity of 3620 were mailed at 12/19/2014 9:00 AM. Click here to examine the task.', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<25385963.22101418953492268.JavaMail.humprey@keats.sebis.com>', 'Thu, 18 Dec 2014 19:44:52 -0600 ', 1648, 47, 47, 1, 0, 0, 0, 0, 0, 1418953497, '2014-12-19 08:45:06', '2014-12-24 08:36:51'), +(73, 25, 'File Uploaded to ATASCADERO1: Atascadero Mutual Water Company Billing', 'The file acsbills.zip of filesize 1960314 was uploaded to application ATASCADERO1 : Atascadero Mutual Water Company Billing\nby username: talexander at 12/23/2014 13:59\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<15049665.11061419364751841.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 13:59:11 -0600 ', 1327, 48, 48, 1, 0, 0, 0, 0, 0, 1419364754, '2014-12-24 03:00:06', '2014-12-24 04:50:02'), +(74, 25, 'Application ATASCADERO1: Atascadero Mutual Water Company Billing processed.', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : ATASCADERO1run id : 201412231401date/time : Tue-Dec-23-2014 03:45:05\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets per Outer Envelope18715131259331434616311071522013215277111121822113415118312419226146261295Duplicate BillD1485E2N10541 Due Date01/22/201510541 TotalsPayments Received:$-502,895.54 Previous Balance:$561,230.12Current Charges:$394,733.98 Share an Envelope:2766Past Due Charges:$62,647.55 Receiving a reply envelope:8139Bank Draft:1022 Total Due:$457,381.53Record Count:12028 Forced Non-Households:6Total Records Printed:11481    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<22014665.15551419371109420.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 15:45:09 -0600 ', 10717, 49, 49, 1, 0, 0, 0, 0, 0, 1419371112, '2014-12-24 04:46:01', '2014-12-24 04:48:02'), +(75, 61, 'File Uploaded to ATASCADERO1: Atascadero Mutual Water Company Billing', 'The file acsbills.zip of filesize 1960314 was uploaded to application ATASCADERO1 : Atascadero Mutual Water Company Billing\nby username: talexander at 12/23/2014 13:59\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<15049665.11061419364751841.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 13:59:11 -0600 ', 1327, 48, 48, 0, 0, 0, 0, 0, 0, 1419364754, '2014-12-24 04:52:02', '2014-12-24 04:54:05'), +(76, 62, 'File Uploaded to ATASCADERO1: Atascadero Mutual Water Company Billing', 'The file acsbills.zip of filesize 1960314 was uploaded to application ATASCADERO1 : Atascadero Mutual Water Company Billing\nby username: talexander at 12/23/2014 13:59\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<15049665.11061419364751841.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 13:59:11 -0600 ', 1327, 48, 48, 0, 0, 0, 0, 0, 0, 1419364754, '2014-12-24 04:52:02', '2014-12-24 04:54:09'), +(77, 63, 'File Uploaded to ATASCADERO1: Atascadero Mutual Water Company Billing', 'The file acsbills.zip of filesize 1960314 was uploaded to application ATASCADERO1 : Atascadero Mutual Water Company Billing\nby username: talexander at 12/23/2014 13:59\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<15049665.11061419364751841.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 13:59:11 -0600 ', 1327, 48, 48, 0, 0, 0, 0, 0, 0, 1419364754, '2014-12-24 04:52:02', '2014-12-24 04:54:01'), +(78, 61, 'Application ATASCADERO1: Atascadero Mutual Water Company Billing processed.', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : ATASCADERO1run id : 201412231401date/time : Tue-Dec-23-2014 03:45:05\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets per Outer Envelope18715131259331434616311071522013215277111121822113415118312419226146261295Duplicate BillD1485E2N10541 Due Date01/22/201510541 TotalsPayments Received:$-502,895.54 Previous Balance:$561,230.12Current Charges:$394,733.98 Share an Envelope:2766Past Due Charges:$62,647.55 Receiving a reply envelope:8139Bank Draft:1022 Total Due:$457,381.53Record Count:12028 Forced Non-Households:6Total Records Printed:11481    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<22014665.15551419371109420.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 15:45:09 -0600 ', 10717, 49, 49, 0, 0, 0, 0, 0, 0, 1419371112, '2014-12-24 04:52:02', '2014-12-24 04:54:08'), +(79, 62, 'Application ATASCADERO1: Atascadero Mutual Water Company Billing processed.', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : ATASCADERO1run id : 201412231401date/time : Tue-Dec-23-2014 03:45:05\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets per Outer Envelope18715131259331434616311071522013215277111121822113415118312419226146261295Duplicate BillD1485E2N10541 Due Date01/22/201510541 TotalsPayments Received:$-502,895.54 Previous Balance:$561,230.12Current Charges:$394,733.98 Share an Envelope:2766Past Due Charges:$62,647.55 Receiving a reply envelope:8139Bank Draft:1022 Total Due:$457,381.53Record Count:12028 Forced Non-Households:6Total Records Printed:11481    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<22014665.15551419371109420.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 15:45:09 -0600 ', 10717, 49, 49, 0, 0, 0, 0, 0, 0, 1419371112, '2014-12-24 04:52:02', '2014-12-24 04:54:11'), +(80, 63, 'Application ATASCADERO1: Atascadero Mutual Water Company Billing processed.', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : ATASCADERO1run id : 201412231401date/time : Tue-Dec-23-2014 03:45:05\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets per Outer Envelope18715131259331434616311071522013215277111121822113415118312419226146261295Duplicate BillD1485E2N10541 Due Date01/22/201510541 TotalsPayments Received:$-502,895.54 Previous Balance:$561,230.12Current Charges:$394,733.98 Share an Envelope:2766Past Due Charges:$62,647.55 Receiving a reply envelope:8139Bank Draft:1022 Total Due:$457,381.53Record Count:12028 Forced Non-Households:6Total Records Printed:11481    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<22014665.15551419371109420.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 15:45:09 -0600 ', 10717, 49, 49, 0, 0, 0, 0, 0, 0, 1419371112, '2014-12-24 04:52:02', '2014-12-24 04:54:04'), +(81, 61, 'File Uploaded to ATASCADERO1: Atascadero Mutual Water Company Billing', 'The file acsbills.zip of filesize 1960314 was uploaded to application ATASCADERO1 : Atascadero Mutual Water Company Billing\nby username: talexander at 12/23/2014 13:59\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<15049665.11061419364751841.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 13:59:11 -0600 ', 1327, 48, 48, 0, 0, 0, 0, 0, 0, 1419364754, '2014-12-24 04:54:01', '2014-12-24 04:55:15'), +(82, 62, 'File Uploaded to ATASCADERO1: Atascadero Mutual Water Company Billing', 'The file acsbills.zip of filesize 1960314 was uploaded to application ATASCADERO1 : Atascadero Mutual Water Company Billing\nby username: talexander at 12/23/2014 13:59\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<15049665.11061419364751841.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 13:59:11 -0600 ', 1327, 48, 48, 0, 0, 0, 0, 0, 0, 1419364754, '2014-12-24 04:54:01', '2014-12-24 04:55:19'), +(83, 63, 'File Uploaded to ATASCADERO1: Atascadero Mutual Water Company Billing', 'The file acsbills.zip of filesize 1960314 was uploaded to application ATASCADERO1 : Atascadero Mutual Water Company Billing\nby username: talexander at 12/23/2014 13:59\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<15049665.11061419364751841.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 13:59:11 -0600 ', 1327, 48, 48, 0, 0, 0, 0, 0, 0, 1419364754, '2014-12-24 04:54:01', '2014-12-24 04:55:02'), +(84, 61, 'Application ATASCADERO1: Atascadero Mutual Water Company Billing processed.', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : ATASCADERO1run id : 201412231401date/time : Tue-Dec-23-2014 03:45:05\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets per Outer Envelope18715131259331434616311071522013215277111121822113415118312419226146261295Duplicate BillD1485E2N10541 Due Date01/22/201510541 TotalsPayments Received:$-502,895.54 Previous Balance:$561,230.12Current Charges:$394,733.98 Share an Envelope:2766Past Due Charges:$62,647.55 Receiving a reply envelope:8139Bank Draft:1022 Total Due:$457,381.53Record Count:12028 Forced Non-Households:6Total Records Printed:11481    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<22014665.15551419371109420.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 15:45:09 -0600 ', 10717, 49, 49, 0, 0, 0, 0, 0, 0, 1419371112, '2014-12-24 04:54:01', '2014-12-24 04:55:17'), +(85, 62, 'Application ATASCADERO1: Atascadero Mutual Water Company Billing processed.', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : ATASCADERO1run id : 201412231401date/time : Tue-Dec-23-2014 03:45:05\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets per Outer Envelope18715131259331434616311071522013215277111121822113415118312419226146261295Duplicate BillD1485E2N10541 Due Date01/22/201510541 TotalsPayments Received:$-502,895.54 Previous Balance:$561,230.12Current Charges:$394,733.98 Share an Envelope:2766Past Due Charges:$62,647.55 Receiving a reply envelope:8139Bank Draft:1022 Total Due:$457,381.53Record Count:12028 Forced Non-Households:6Total Records Printed:11481    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<22014665.15551419371109420.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 15:45:09 -0600 ', 10717, 49, 49, 0, 0, 0, 0, 0, 0, 1419371112, '2014-12-24 04:54:01', '2014-12-24 04:55:21'), +(86, 63, 'Application ATASCADERO1: Atascadero Mutual Water Company Billing processed.', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : ATASCADERO1run id : 201412231401date/time : Tue-Dec-23-2014 03:45:05\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets per Outer Envelope18715131259331434616311071522013215277111121822113415118312419226146261295Duplicate BillD1485E2N10541 Due Date01/22/201510541 TotalsPayments Received:$-502,895.54 Previous Balance:$561,230.12Current Charges:$394,733.98 Share an Envelope:2766Past Due Charges:$62,647.55 Receiving a reply envelope:8139Bank Draft:1022 Total Due:$457,381.53Record Count:12028 Forced Non-Households:6Total Records Printed:11481    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<22014665.15551419371109420.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 15:45:09 -0600 ', 10717, 49, 49, 0, 0, 0, 0, 0, 0, 1419371112, '2014-12-24 04:54:01', '2014-12-24 04:55:13'), +(87, 61, 'Application Results ATASCADERO1: Atascadero Mutual Water Company Billing approved.', 'Run 201412231401 for the application ATASCADERO1 : Atascadero Mutual Water Company Billing\nhas been approved by username: talexander at 12/23/2014 16:40\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<1075606.12171419374446481.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 16:40:46 -0600 ', 1754, 50, 50, 1, 0, 0, 0, 0, 0, 1419374449, '2014-12-24 05:41:02', '2014-12-24 05:42:04'), +(88, 62, 'Application Results ATASCADERO1: Atascadero Mutual Water Company Billing approved.', 'Run 201412231401 for the application ATASCADERO1 : Atascadero Mutual Water Company Billing\nhas been approved by username: talexander at 12/23/2014 16:40\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<1075606.12171419374446481.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 16:40:46 -0600 ', 1754, 50, 50, 1, 0, 0, 0, 0, 0, 1419374449, '2014-12-24 05:41:02', '2014-12-24 05:42:06'), +(89, 63, 'Application Results ATASCADERO1: Atascadero Mutual Water Company Billing approved.', 'Run 201412231401 for the application ATASCADERO1 : Atascadero Mutual Water Company Billing\nhas been approved by username: talexander at 12/23/2014 16:40\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<1075606.12171419374446481.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 16:40:46 -0600 ', 1754, 50, 50, 1, 0, 0, 0, 0, 0, 1419374449, '2014-12-24 05:41:02', '2014-12-24 05:42:02'), +(90, 61, 'Application ATASCADERO1: Atascadero Mutual Water Company Billing processed.', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : ATASCADERO1run id : 201412231401date/time : Tue-Dec-23-2014 03:45:05\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets per Outer Envelope18715131259331434616311071522013215277111121822113415118312419226146261295Duplicate BillD1485E2N10541 Due Date01/22/201510541 TotalsPayments Received:$-502,895.54 Previous Balance:$561,230.12Current Charges:$394,733.98 Share an Envelope:2766Past Due Charges:$62,647.55 Receiving a reply envelope:8139Bank Draft:1022 Total Due:$457,381.53Record Count:12028 Forced Non-Households:6Total Records Printed:11481    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<22014665.15551419371109420.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 15:45:09 -0600 ', 10717, 49, 49, 0, 0, 0, 0, 0, 0, 1419371112, '2014-12-24 06:19:02', '2014-12-24 06:20:04'), +(91, 62, 'Application ATASCADERO1: Atascadero Mutual Water Company Billing processed.', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : ATASCADERO1run id : 201412231401date/time : Tue-Dec-23-2014 03:45:05\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets per Outer Envelope18715131259331434616311071522013215277111121822113415118312419226146261295Duplicate BillD1485E2N10541 Due Date01/22/201510541 TotalsPayments Received:$-502,895.54 Previous Balance:$561,230.12Current Charges:$394,733.98 Share an Envelope:2766Past Due Charges:$62,647.55 Receiving a reply envelope:8139Bank Draft:1022 Total Due:$457,381.53Record Count:12028 Forced Non-Households:6Total Records Printed:11481    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<22014665.15551419371109420.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 15:45:09 -0600 ', 10717, 49, 49, 0, 0, 0, 0, 0, 0, 1419371112, '2014-12-24 06:19:02', '2014-12-24 06:20:07'), +(92, 63, 'Application ATASCADERO1: Atascadero Mutual Water Company Billing processed.', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.\n\nHere are the process results.\n\n\nClick here to examine and approve the process.\n\n\n\nSebis Direct, Inc.Process Resultsapplication code : ATASCADERO1run id : 201412231401date/time : Tue-Dec-23-2014 03:45:05\nProcess Message\n\n\n\n\n\n\n\n\n\nSheets per Outer Envelope18715131259331434616311071522013215277111121822113415118312419226146261295Duplicate BillD1485E2N10541 Due Date01/22/201510541 TotalsPayments Received:$-502,895.54 Previous Balance:$561,230.12Current Charges:$394,733.98 Share an Envelope:2766Past Due Charges:$62,647.55 Receiving a reply envelope:8139Bank Draft:1022 Total Due:$457,381.53Record Count:12028 Forced Non-Households:6Total Records Printed:11481    \n1) Please approve the above process results.\n2) Check the appropriate box.\n3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.\n\n[ ] Process results are correct, Proceed with job.\n\n[ ] Process results are NOT correct, DO NOT proceed with job.\n\n\nApproval:__________________________________________ Date:_______________\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<22014665.15551419371109420.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 15:45:09 -0600 ', 10717, 49, 49, 0, 0, 0, 0, 0, 0, 1419371112, '2014-12-24 06:19:02', '2014-12-24 06:20:01'), +(93, 61, 'Application Results ATASCADERO1: Atascadero Mutual Water Company Billing approved.', 'Run 201412231401 for the application ATASCADERO1 : Atascadero Mutual Water Company Billing\nhas been approved by username: talexander at 12/23/2014 16:40\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<1075606.12171419374446481.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 16:40:46 -0600 ', 1754, 50, 50, 0, 0, 0, 0, 0, 0, 1419374449, '2014-12-24 06:19:02', '2014-12-24 06:20:05'), +(94, 62, 'Application Results ATASCADERO1: Atascadero Mutual Water Company Billing approved.', 'Run 201412231401 for the application ATASCADERO1 : Atascadero Mutual Water Company Billing\nhas been approved by username: talexander at 12/23/2014 16:40\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<1075606.12171419374446481.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 16:40:46 -0600 ', 1754, 50, 50, 0, 0, 0, 0, 0, 0, 1419374449, '2014-12-24 06:19:02', '2014-12-24 06:20:08'), +(95, 63, 'Application Results ATASCADERO1: Atascadero Mutual Water Company Billing approved.', 'Run 201412231401 for the application ATASCADERO1 : Atascadero Mutual Water Company Billing\nhas been approved by username: talexander at 12/23/2014 16:40\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<1075606.12171419374446481.JavaMail.humprey@keats.sebis.com>', 'Tue, 23 Dec 2014 16:40:46 -0600 ', 1754, 50, 50, 0, 0, 0, 0, 0, 0, 1419374449, '2014-12-24 06:19:02', '2014-12-24 06:20:02'), +(96, 64, 'Laser Imaging for job Atascadero Utility Billing - December 2014 Segment:MAIN completed.', 'Laser imaging for job Atascadero Utility Billing - December 2014 and segment MAIN and application Atascadero Mutual Water Company Billing\n\nwas completed by bill2 at 2014-12-24 04:54:08.801425.', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<28706632.13221419423962680.JavaMail.humprey@keats.sebis.com>', 'Wed, 24 Dec 2014 06:26:02 -0600 ', 1352, 51, 51, 1, 0, 0, 0, 0, 0, 1419423965, '2014-12-24 19:27:04', '2014-12-24 19:28:05'), +(97, 48, 'Application DAVIS: City of Davis processed.', 'The application DAVIS : City of Davis has been processed.\n\nHere are the process results.\n\n\nClick here to approve or not-approve the process.\n\n\n\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<10124219.15821419447188583.JavaMail.humprey@keats.sebis.com>', 'Wed, 24 Dec 2014 12:53:08 -0600 ', 1709, 55, 55, 1, 0, 0, 0, 0, 0, 1419447191, '2014-12-25 01:54:02', '2014-12-25 01:55:08'), +(98, 49, 'Application DAVIS: City of Davis processed.', 'The application DAVIS : City of Davis has been processed.\n\nHere are the process results.\n\n\nClick here to approve or not-approve the process.\n\n\n\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<10124219.15821419447188583.JavaMail.humprey@keats.sebis.com>', 'Wed, 24 Dec 2014 12:53:08 -0600 ', 1709, 55, 55, 1, 0, 0, 0, 0, 0, 1419447191, '2014-12-25 01:54:02', '2014-12-25 01:55:12'), +(99, 50, 'Application DAVIS: City of Davis processed.', 'The application DAVIS : City of Davis has been processed.\n\nHere are the process results.\n\n\nClick here to approve or not-approve the process.\n\n\n\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<10124219.15821419447188583.JavaMail.humprey@keats.sebis.com>', 'Wed, 24 Dec 2014 12:53:08 -0600 ', 1709, 55, 55, 1, 0, 0, 0, 0, 0, 1419447191, '2014-12-25 01:54:02', '2014-12-25 01:55:06'), +(100, 68, 'Application DAVIS: City of Davis processed.', 'The application DAVIS : City of Davis has been processed.\n\nHere are the process results.\n\n\nClick here to approve or not-approve the process.\n\n\n\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<10124219.15821419447188583.JavaMail.humprey@keats.sebis.com>', 'Wed, 24 Dec 2014 12:53:08 -0600 ', 1709, 55, 55, 1, 0, 0, 0, 0, 0, 1419447191, '2014-12-25 01:54:02', '2014-12-25 01:55:10'), +(101, 69, 'Application DAVIS: City of Davis processed.', 'The application DAVIS : City of Davis has been processed.\n\nHere are the process results.\n\n\nClick here to approve or not-approve the process.\n\n\n\n\n\n\n\nYou may also print and fax us the above approval document. If you choose to fax the above approval document, please fax it to: 708-546-2006\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<10124219.15821419447188583.JavaMail.humprey@keats.sebis.com>', 'Wed, 24 Dec 2014 12:53:08 -0600 ', 1709, 55, 55, 1, 0, 0, 0, 0, 0, 1419447191, '2014-12-25 01:54:02', '2014-12-25 01:55:13'), +(102, 68, 'Application Results DAVIS: City of Davis approved.', 'Run 201412231642 for the application DAVIS : City of Davis\nhas been approved by username: talexander at 12/26/2014 11:20\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<13459507.17871419614416902.JavaMail.humprey@keats.sebis.com>', 'Fri, 26 Dec 2014 11:20:16 -0600 ', 1721, 56, 56, 1, 0, 0, 0, 0, 0, 1419614420, '2014-12-27 00:21:03', '2014-12-27 00:22:06'), +(103, 69, 'Application Results DAVIS: City of Davis approved.', 'Run 201412231642 for the application DAVIS : City of Davis\nhas been approved by username: talexander at 12/26/2014 11:20\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<13459507.17871419614416902.JavaMail.humprey@keats.sebis.com>', 'Fri, 26 Dec 2014 11:20:16 -0600 ', 1721, 56, 56, 1, 0, 0, 0, 0, 0, 1419614420, '2014-12-27 00:21:03', '2014-12-27 00:22:08'), +(104, 70, 'Application Results DAVIS: City of Davis approved.', 'Run 201412231642 for the application DAVIS : City of Davis\nhas been approved by username: talexander at 12/26/2014 11:20\n\n\n\n\nHere are the process results.\n\n\nClick here to examine the process.\n\n\n\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<13459507.17871419614416902.JavaMail.humprey@keats.sebis.com>', 'Fri, 26 Dec 2014 11:20:16 -0600 ', 1721, 56, 56, 1, 0, 0, 0, 0, 0, 1419614420, '2014-12-27 00:21:03', '2014-12-27 00:22:05'), +(105, 68, 'Laser Imaging for job City of Davis Utility Billing - December 2014 Segment:MAIN completed.', 'Laser imaging for job City of Davis Utility Billing - December 2014 and segment MAIN and application City of Davis\n\nwas completed by bill2 at 2014-12-27 10:14:23.295406.', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<10405813.21261419698652597.JavaMail.humprey@keats.sebis.com>', 'Sat, 27 Dec 2014 10:44:12 -0600 ', 1358, 57, 57, 1, 0, 0, 0, 0, 0, 1419698656, '2014-12-27 23:45:02', '2014-12-27 23:45:08'), +(106, 69, 'Laser Imaging for job City of Davis Utility Billing - December 2014 Segment:MAIN completed.', 'Laser imaging for job City of Davis Utility Billing - December 2014 and segment MAIN and application City of Davis\n\nwas completed by bill2 at 2014-12-27 10:14:23.295406.', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<10405813.21261419698652597.JavaMail.humprey@keats.sebis.com>', 'Sat, 27 Dec 2014 10:44:12 -0600 ', 1358, 57, 57, 1, 0, 0, 0, 0, 0, 1419698656, '2014-12-27 23:45:02', '2014-12-27 23:45:10'), +(107, 70, 'Laser Imaging for job City of Davis Utility Billing - December 2014 Segment:MAIN completed.', 'Laser imaging for job City of Davis Utility Billing - December 2014 and segment MAIN and application City of Davis\n\nwas completed by bill2 at 2014-12-27 10:14:23.295406.', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<10405813.21261419698652597.JavaMail.humprey@keats.sebis.com>', 'Sat, 27 Dec 2014 10:44:12 -0600 ', 1358, 57, 57, 1, 0, 0, 0, 0, 0, 1419698656, '2014-12-27 23:45:02', '2014-12-27 23:45:06'), +(108, 75, 'test', 'It''s me Dren...
', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '', 'Sat, 27 Dec 2014 22:51:44 +0000', 1992, 58, 58, 1, 0, 0, 0, 0, 0, 1419720708, '2014-12-28 05:52:02', '2014-12-28 05:52:51'), +(109, 75, 'test', '

I''ve just edited this email.


BTW: This emails won''t be sent automatically, 
because the "keywordEntity" is selected not
to forward them right away.


Quote...

H1

H2

H3

H4

H5
H6
', NULL, NULL, NULL, NULL, 0, 0, 0, 0, '', 'Sat, 27 Dec 2014 22:53:11 +0000', 2843, 59, 59, 1, 0, 0, 0, 0, 0, 1419720794, '2014-12-28 05:54:02', '2014-12-30 04:51:14'), +(110, 16, 'Assembly & Mailing for job Atascadero Utility Billing - December 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - December 2014 and segment MAIN and application Atascadero Mutual Water Company Billing was completed at 2:24 PM on 12/29/2014. Items 1-9599 having a quantity of 9599 were mailed at 12/29/2014 7:00 PM. Click here to examine the task.


Test...

', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<5052440.49151419884668355.JavaMail.humprey@keats.sebis.com>', 'Mon, 29 Dec 2014 14:24:28 -0600 ', 1637, 60, 60, 1, 0, 0, 0, 0, 0, 1419884671, '2014-12-30 03:25:03', '2015-01-02 18:26:50'), +(111, 17, 'Assembly & Mailing for job Atascadero Utility Billing - December 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - December 2014 and segment MAIN and application Atascadero Mutual Water Company Billing was completed at 2:24 PM on 12/29/2014. Items 1-9599 having a quantity of 9599 were mailed at 12/29/2014 7:00 PM. Click here to examine the task.


Test...

', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<5052440.49151419884668355.JavaMail.humprey@keats.sebis.com>', 'Mon, 29 Dec 2014 14:24:28 -0600 ', 1637, 60, 60, 1, 0, 0, 0, 0, 0, 1419884671, '2014-12-30 03:25:03', '2015-01-02 18:26:50'), +(112, 18, 'Assembly & Mailing for job Atascadero Utility Billing - December 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - December 2014 and segment MAIN and application Atascadero Mutual Water Company Billing was completed at 2:24 PM on 12/29/2014. Items 1-9599 having a quantity of 9599 were mailed at 12/29/2014 7:00 PM. Click here to examine the task.


Test...

', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<5052440.49151419884668355.JavaMail.humprey@keats.sebis.com>', 'Mon, 29 Dec 2014 14:24:28 -0600 ', 1637, 60, 60, 1, 0, 0, 0, 0, 0, 1419884671, '2014-12-30 03:25:03', '2015-01-02 18:26:50'), +(113, 64, 'Assembly & Mailing for job Atascadero Utility Billing - December 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - December 2014 and segment MAIN and application Atascadero Mutual Water Company Billing was completed at 2:24 PM on 12/29/2014. Items 1-9599 having a quantity of 9599 were mailed at 12/29/2014 7:00 PM. Click here to examine the task.


Test...

', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<5052440.49151419884668355.JavaMail.humprey@keats.sebis.com>', 'Mon, 29 Dec 2014 14:24:28 -0600 ', 1637, 60, 60, 1, 0, 0, 0, 0, 0, 1419884671, '2014-12-30 03:25:03', '2015-01-02 18:26:50'), +(114, 71, 'Assembly & Mailing for job Atascadero Utility Billing - December 2014 Segment:MAIN completed.', 'Assembly & Mailing for job Atascadero Utility Billing - December 2014 and segment MAIN and application Atascadero Mutual Water Company Billing was completed at 2:24 PM on 12/29/2014. Items 1-9599 having a quantity of 9599 were mailed at 12/29/2014 7:00 PM. Click here to examine the task.


Test...

', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<5052440.49151419884668355.JavaMail.humprey@keats.sebis.com>', 'Mon, 29 Dec 2014 14:24:28 -0600 ', 1637, 60, 60, 1, 0, 0, 0, 0, 0, 1419884671, '2014-12-30 03:25:03', '2015-01-02 18:26:50'), +(121, 68, 'Assembly & Mailing for job City of Davis Utility Billing - December 2014 Segment:MAIN completed.', 'Assembly & Mailing for job City of Davis Utility Billing - December 2014 and segment MAIN and application City of Davis
\nwas completed at 11:55 AM on 12/30/2014.

\nItems 1-12896 having a quantity of 12896 were mailed at 12/30/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 0, 1, 0, '<32470282.31901419962125728.JavaMail.humprey@keats.sebis.com>', 'Tue, 30 Dec 2014 11:55:25 -0600 ', 1644, 61, 61, 0, 0, 0, 0, 0, 0, 1419962129, '2014-12-31 03:57:01', '2014-12-31 03:57:01'), +(122, 69, 'Assembly & Mailing for job City of Davis Utility Billing - December 2014 Segment:MAIN completed.', 'Assembly & Mailing for job City of Davis Utility Billing - December 2014 and segment MAIN and application City of Davis
\nwas completed at 11:55 AM on 12/30/2014.

\nItems 1-12896 having a quantity of 12896 were mailed at 12/30/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 0, 1, 0, '<32470282.31901419962125728.JavaMail.humprey@keats.sebis.com>', 'Tue, 30 Dec 2014 11:55:25 -0600 ', 1644, 61, 61, 0, 0, 0, 0, 0, 0, 1419962129, '2014-12-31 03:57:01', '2014-12-31 03:57:01'), +(123, 70, 'Assembly & Mailing for job City of Davis Utility Billing - December 2014 Segment:MAIN completed.', 'Assembly & Mailing for job City of Davis Utility Billing - December 2014 and segment MAIN and application City of Davis
\nwas completed at 11:55 AM on 12/30/2014.

\nItems 1-12896 having a quantity of 12896 were mailed at 12/30/2014 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 0, 1, 0, '<32470282.31901419962125728.JavaMail.humprey@keats.sebis.com>', 'Tue, 30 Dec 2014 11:55:25 -0600 ', 1644, 61, 61, 0, 0, 0, 0, 0, 0, 1419962129, '2014-12-31 03:57:01', '2014-12-31 03:57:01'), +(124, 78, 'File Uploaded to CALCTY: California City Application', 'The file CalCity_20150209.zip of filesize 395230 was uploaded to application CALCTY : California City Application
by username: talexander at 01/19/2015 18:48
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<11860741.111341421714936485.JavaMail.humprey@keats.sebis.com>', 'Mon, 19 Jan 2015 18:48:56 -0600 ', 1316, 62, 62, 1, 0, 0, 0, 0, 0, 1421714940, '2015-01-20 07:51:03', '2015-01-20 07:52:06'), +(125, 79, 'File Uploaded to CALCTY: California City Application', 'The file CalCity_20150209.zip of filesize 395230 was uploaded to application CALCTY : California City Application
by username: talexander at 01/19/2015 18:48
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<11860741.111341421714936485.JavaMail.humprey@keats.sebis.com>', 'Mon, 19 Jan 2015 18:48:56 -0600 ', 1316, 62, 62, 1, 0, 0, 0, 0, 0, 1421714940, '2015-01-20 07:51:03', '2015-01-20 07:52:08'), +(126, 85, 'Laser Imaging for job California City Utility Billing - January 2015 Segment:MAIN completed.', 'Laser imaging for job California City Utility Billing - January 2015 and segment MAIN and application California City Application
\nwas completed by bill2 at 2015-01-21 14:23:09.640691.\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<13681603.3381421878806015.JavaMail.humprey@keats.sebis.com>', 'Wed, 21 Jan 2015 16:20:06 -0600 ', 1358, 67, 67, 1, 0, 0, 0, 0, 0, 1421878810, '2015-01-22 05:21:02', '2015-01-22 05:22:05'), +(127, 86, 'Laser Imaging for job California City Utility Billing - January 2015 Segment:MAIN completed.', 'Laser imaging for job California City Utility Billing - January 2015 and segment MAIN and application California City Application
\nwas completed by bill2 at 2015-01-21 14:23:09.640691.\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<13681603.3381421878806015.JavaMail.humprey@keats.sebis.com>', 'Wed, 21 Jan 2015 16:20:06 -0600 ', 1358, 67, 67, 1, 0, 0, 0, 0, 0, 1421878810, '2015-01-22 05:21:02', '2015-01-22 05:22:07'), +(128, 87, 'Application CALCTY: California City Application REJECTED', '\n\nRemarks regarding the denial of approval:
\nChanges requested to static Back
\n\nHere are the process results.
\n\n\n\nClick here to examine the process.
\n
\n\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<30229673.114351421776112495.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 11:48:32 -0600 ', 1858, 64, 64, 0, 0, 0, 0, 0, 0, 1421776116, '2015-01-22 06:03:02', '2015-01-22 06:04:04'); +INSERT INTO `mails` (`id`, `email_address_id`, `subject`, `body`, `body_html`, `optional_text`, `sender_email`, `reciver_email`, `fwd_accept`, `sent`, `html`, `deleted`, `x_message_id`, `x_date`, `x_size`, `x_uid`, `x_msgno`, `x_recent`, `x_flagged`, `x_answered`, `x_deleted`, `x_seen`, `x_draft`, `x_udate`, `created_at`, `updated_at`) VALUES +(129, 88, 'Application CALCTY: California City Application REJECTED', '\n\nRemarks regarding the denial of approval:
\nChanges requested to static Back
\n\nHere are the process results.
\n\n\n\nClick here to examine the process.
\n
\n\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<30229673.114351421776112495.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 11:48:32 -0600 ', 1858, 64, 64, 0, 0, 0, 0, 0, 0, 1421776116, '2015-01-22 06:03:02', '2015-01-22 06:04:08'), +(130, 83, 'Application Results CALCTY: California City Application approved', 'Run 201501200937 for the application CALCTY : California City Application
has been approved by username: talexander at 01/20/2015 15:14
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<7242348.116231421788488753.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 15:14:48 -0600 ', 1736, 66, 66, 0, 0, 0, 0, 0, 0, 1421788491, '2015-01-22 06:03:02', '2015-01-22 06:04:06'), +(131, 84, 'Application Results CALCTY: California City Application approved', 'Run 201501200937 for the application CALCTY : California City Application
has been approved by username: talexander at 01/20/2015 15:14
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<7242348.116231421788488753.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 15:14:48 -0600 ', 1736, 66, 66, 0, 0, 0, 0, 0, 0, 1421788491, '2015-01-22 06:03:02', '2015-01-22 06:04:09'), +(132, 87, 'Application CALCTY: California City Application REJECTED', '\n\nRemarks regarding the denial of approval:
\nChanges requested to static Back
\n\nHere are the process results.
\n\n\n\nClick here to examine the process.
\n
\n\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<30229673.114351421776112495.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 11:48:32 -0600 ', 1858, 64, 64, 0, 0, 0, 0, 0, 0, 1421776116, '2015-01-22 06:06:02', '2015-01-22 06:08:03'), +(133, 88, 'Application CALCTY: California City Application REJECTED', '\n\nRemarks regarding the denial of approval:
\nChanges requested to static Back
\n\nHere are the process results.
\n\n\n\nClick here to examine the process.
\n
\n\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<30229673.114351421776112495.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 11:48:32 -0600 ', 1858, 64, 64, 0, 0, 0, 0, 0, 0, 1421776116, '2015-01-22 06:06:02', '2015-01-22 06:08:06'), +(134, 83, 'Application Results CALCTY: California City Application approved', 'Run 201501200937 for the application CALCTY : California City Application
has been approved by username: talexander at 01/20/2015 15:14
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<7242348.116231421788488753.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 15:14:48 -0600 ', 1736, 66, 66, 0, 0, 0, 0, 0, 0, 1421788491, '2015-01-22 06:06:02', '2015-01-22 06:08:05'), +(135, 84, 'Application Results CALCTY: California City Application approved', 'Run 201501200937 for the application CALCTY : California City Application
has been approved by username: talexander at 01/20/2015 15:14
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<7242348.116231421788488753.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 15:14:48 -0600 ', 1736, 66, 66, 0, 0, 0, 0, 0, 0, 1421788491, '2015-01-22 06:06:02', '2015-01-22 06:08:08'), +(136, 80, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
Here are the process results.
.


Process Results

application code : CALCTY
run id : 201501200937
date/time : Tue-Jan-20-2015 10:40:03

Process Message










Sheets Per Outer Envelope
134162215871
122314555181
1814246592
Totals
Total Records Printed:3978 Total Records Processed:4324
Receiving a reply envelope:3489    


', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<8870356.273701421772007119.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 10:40:07 -0600 ', 5980, 63, 63, 0, 0, 0, 0, 0, 0, 1421772011, '2015-01-22 07:27:03', '2015-01-29 10:18:35'), +(137, 81, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
Here are the process results.
.


Process Results

application code : CALCTY
run id : 201501200937
date/time : Tue-Jan-20-2015 10:40:03

Process Message










Sheets Per Outer Envelope
134162215871
122314555181
1814246592
Totals
Total Records Printed:3978 Total Records Processed:4324
Receiving a reply envelope:3489    


', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<8870356.273701421772007119.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 10:40:07 -0600 ', 5980, 63, 63, 0, 0, 0, 0, 0, 0, 1421772011, '2015-01-22 07:27:03', '2015-01-29 10:18:35'), +(138, 82, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
Here are the process results.
.


Process Results

application code : CALCTY
run id : 201501200937
date/time : Tue-Jan-20-2015 10:40:03

Process Message










Sheets Per Outer Envelope
134162215871
122314555181
1814246592
Totals
Total Records Printed:3978 Total Records Processed:4324
Receiving a reply envelope:3489    


', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<8870356.273701421772007119.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 10:40:07 -0600 ', 5980, 63, 63, 0, 0, 0, 0, 0, 0, 1421772011, '2015-01-22 07:27:03', '2015-01-29 10:18:35'), +(139, 94, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
Here are the process results.
.


Process Results

application code : CALCTY
run id : 201501200937
date/time : Tue-Jan-20-2015 10:40:03

Process Message










Sheets Per Outer Envelope
134162215871
122314555181
1814246592
Totals
Total Records Printed:3978 Total Records Processed:4324
Receiving a reply envelope:3489    


', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<8870356.273701421772007119.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 10:40:07 -0600 ', 5980, 63, 63, 0, 0, 0, 0, 0, 0, 1421772011, '2015-01-22 07:27:03', '2015-01-29 10:18:35'), +(140, 80, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201501200937
date/time : Tue-Jan-20-2015 01:42:03

Process Message










Sheets Per Outer Envelope
134162215871
122314555181
1814246592
Totals
Total Records Printed:3978 Total Records Processed:4324
Receiving a reply envelope:3489    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<14509563.276241421782929309.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 13:42:09 -0600 ', 5981, 65, 65, 0, 0, 0, 0, 0, 0, 1421782933, '2015-01-22 07:27:03', '2015-01-22 07:28:08'), +(141, 81, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201501200937
date/time : Tue-Jan-20-2015 01:42:03

Process Message










Sheets Per Outer Envelope
134162215871
122314555181
1814246592
Totals
Total Records Printed:3978 Total Records Processed:4324
Receiving a reply envelope:3489    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<14509563.276241421782929309.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 13:42:09 -0600 ', 5981, 65, 65, 0, 0, 0, 0, 0, 0, 1421782933, '2015-01-22 07:27:03', '2015-01-22 07:28:11'), +(142, 82, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201501200937
date/time : Tue-Jan-20-2015 01:42:03

Process Message










Sheets Per Outer Envelope
134162215871
122314555181
1814246592
Totals
Total Records Printed:3978 Total Records Processed:4324
Receiving a reply envelope:3489    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<14509563.276241421782929309.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 13:42:09 -0600 ', 5981, 65, 65, 0, 0, 0, 0, 0, 0, 1421782933, '2015-01-22 07:27:03', '2015-01-22 07:28:15'), +(143, 94, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : CALCTY
run id : 201501200937
date/time : Tue-Jan-20-2015 01:42:03

Process Message










Sheets Per Outer Envelope
134162215871
122314555181
1814246592
Totals
Total Records Printed:3978 Total Records Processed:4324
Receiving a reply envelope:3489    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<14509563.276241421782929309.JavaMail.humprey@keats.sebis.com>', 'Tue, 20 Jan 2015 13:42:09 -0600 ', 5981, 65, 65, 0, 0, 0, 0, 0, 0, 1421782933, '2015-01-22 07:27:03', '2015-01-22 07:28:05'), +(144, 89, 'Assembly Mailing for job California City Utility Billing January 2015 SegmentMAIN completed', 'Assembly & Mailing for job California City Utility Billing - January 2015 and segment MAIN and application California City Application
\nwas completed at 9:09 AM on 01/22/2015.

\nItems 1-3607 having a quantity of 3607 were mailed at 01/22/2015 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<15519480.4981421939351985.JavaMail.humprey@keats.sebis.com>', 'Thu, 22 Jan 2015 09:09:11 -0600 ', 1642, 68, 68, 1, 0, 0, 0, 0, 0, 1421939355, '2015-01-22 22:12:03', '2015-01-22 22:14:05'), +(145, 90, 'Assembly Mailing for job California City Utility Billing January 2015 SegmentMAIN completed', 'Assembly & Mailing for job California City Utility Billing - January 2015 and segment MAIN and application California City Application
\nwas completed at 9:09 AM on 01/22/2015.

\nItems 1-3607 having a quantity of 3607 were mailed at 01/22/2015 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<15519480.4981421939351985.JavaMail.humprey@keats.sebis.com>', 'Thu, 22 Jan 2015 09:09:11 -0600 ', 1642, 68, 68, 1, 0, 0, 0, 0, 0, 1421939355, '2015-01-22 22:12:03', '2015-01-22 22:14:06'), +(146, 91, 'Assembly Mailing for job California City Utility Billing January 2015 SegmentMAIN completed', 'Assembly & Mailing for job California City Utility Billing - January 2015 and segment MAIN and application California City Application
\nwas completed at 9:09 AM on 01/22/2015.

\nItems 1-3607 having a quantity of 3607 were mailed at 01/22/2015 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<15519480.4981421939351985.JavaMail.humprey@keats.sebis.com>', 'Thu, 22 Jan 2015 09:09:11 -0600 ', 1642, 68, 68, 1, 0, 0, 0, 0, 0, 1421939355, '2015-01-22 22:12:03', '2015-01-22 22:14:08'), +(147, 95, 'File Uploaded to ATASCADERO1 Atascadero Mutual Water Company Billing', 'The file acsbills.zip of filesize 1818186 was uploaded to application ATASCADERO1 : Atascadero Mutual Water Company Billing
by username: talexander at 01/23/2015 11:27
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<9852800.11421422034053594.JavaMail.humprey@keats.sebis.com>', 'Fri, 23 Jan 2015 11:27:33 -0600 ', 1326, 69, 69, 1, 0, 0, 0, 0, 0, 1422034057, '2015-01-24 00:30:05', '2015-01-24 00:32:04'), +(148, 96, 'File Uploaded to ATASCADERO1 Atascadero Mutual Water Company Billing', 'The file acsbills.zip of filesize 1818186 was uploaded to application ATASCADERO1 : Atascadero Mutual Water Company Billing
by username: talexander at 01/23/2015 11:27
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<9852800.11421422034053594.JavaMail.humprey@keats.sebis.com>', 'Fri, 23 Jan 2015 11:27:33 -0600 ', 1326, 69, 69, 1, 0, 0, 0, 0, 0, 1422034057, '2015-01-24 00:30:05', '2015-01-24 00:32:08'), +(149, 97, 'File Uploaded to ATASCADERO1 Atascadero Mutual Water Company Billing', 'The file acsbills.zip of filesize 1818186 was uploaded to application ATASCADERO1 : Atascadero Mutual Water Company Billing
by username: talexander at 01/23/2015 11:27
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<9852800.11421422034053594.JavaMail.humprey@keats.sebis.com>', 'Fri, 23 Jan 2015 11:27:33 -0600 ', 1326, 69, 69, 1, 0, 0, 0, 0, 0, 1422034057, '2015-01-24 00:30:05', '2015-01-24 00:32:06'), +(150, 76, 'Application ATASCADERO1 Atascadero Mutual Water Company Billing processed', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : ATASCADERO1
run id : 201501231131
date/time : Fri-Jan-23-2015 01:57:11

Process Message










Sheets per Outer Envelope
1869513125963142451631
107152201311527711
11318221134151183
12319225146261295
Duplicate Bill
D1483E2N10543
Due Date
02/22/201510543
Totals
Payments Received:$-473,308.45 Previous Balance:$456,234.24
Current Charges:$364,037.62 Share an Envelope:2765
Past Due Charges:$45,102.33 Receiving a reply envelope:8062
Bank Draft:1027 Total Due:$409,139.95
Record Count:12028 Forced Non-Households:6
Total Records Printed:11460    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<8416184.308241422043040975.JavaMail.humprey@keats.sebis.com>', 'Fri, 23 Jan 2015 13:57:20 -0600 ', 10697, 70, 70, 1, 0, 0, 0, 0, 0, 1422043045, '2015-01-24 03:00:05', '2015-01-24 03:02:03'); +INSERT INTO `mails` (`id`, `email_address_id`, `subject`, `body`, `body_html`, `optional_text`, `sender_email`, `reciver_email`, `fwd_accept`, `sent`, `html`, `deleted`, `x_message_id`, `x_date`, `x_size`, `x_uid`, `x_msgno`, `x_recent`, `x_flagged`, `x_answered`, `x_deleted`, `x_seen`, `x_draft`, `x_udate`, `created_at`, `updated_at`) VALUES +(151, 77, 'Application ATASCADERO1 Atascadero Mutual Water Company Billing processed', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : ATASCADERO1
run id : 201501231131
date/time : Fri-Jan-23-2015 01:57:11

Process Message










Sheets per Outer Envelope
1869513125963142451631
107152201311527711
11318221134151183
12319225146261295
Duplicate Bill
D1483E2N10543
Due Date
02/22/201510543
Totals
Payments Received:$-473,308.45 Previous Balance:$456,234.24
Current Charges:$364,037.62 Share an Envelope:2765
Past Due Charges:$45,102.33 Receiving a reply envelope:8062
Bank Draft:1027 Total Due:$409,139.95
Record Count:12028 Forced Non-Households:6
Total Records Printed:11460    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<8416184.308241422043040975.JavaMail.humprey@keats.sebis.com>', 'Fri, 23 Jan 2015 13:57:20 -0600 ', 10697, 70, 70, 1, 0, 0, 0, 0, 0, 1422043045, '2015-01-24 03:00:05', '2015-01-24 03:02:05'), +(152, 76, 'Application ATASCADERO1 Atascadero Mutual Water Company Billing processed', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.
Here are the process results.


.

Process Results

application code : ATASCADERO1
run id : 201501231131
date/time : Mon-Jan-26-2015 11:06:08

Process Message










Sheets per Outer Envelope
1869513125963142451631
107152201311527711
11318221134151183
12319225146261295
Duplicate Bill
D1483E2N10543
Due Date
02/22/201510543
Totals
Payments Received:$-473,308.45 Previous Balance:$456,234.24
Current Charges:$364,037.62 Share an Envelope:2765
Past Due Charges:$45,102.33 Receiving a reply envelope:8062
Bank Draft:1027 Total Due:$409,139.95
Record Count:12028 Forced Non-Households:6
Total Records Printed:11460    


', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<17016027.320881422291978668.JavaMail.humprey@keats.sebis.com>', 'Mon, 26 Jan 2015 11:06:18 -0600 ', 10697, 71, 71, 1, 0, 0, 0, 0, 0, 1422291983, '2015-01-27 00:09:02', '2015-01-29 10:18:16'), +(153, 77, 'Application ATASCADERO1 Atascadero Mutual Water Company Billing processed', 'The application ATASCADERO1: Atascadero Mutual Water Company Billing has been processed.
Here are the process results.


.

Process Results

application code : ATASCADERO1
run id : 201501231131
date/time : Mon-Jan-26-2015 11:06:08

Process Message










Sheets per Outer Envelope
1869513125963142451631
107152201311527711
11318221134151183
12319225146261295
Duplicate Bill
D1483E2N10543
Due Date
02/22/201510543
Totals
Payments Received:$-473,308.45 Previous Balance:$456,234.24
Current Charges:$364,037.62 Share an Envelope:2765
Past Due Charges:$45,102.33 Receiving a reply envelope:8062
Bank Draft:1027 Total Due:$409,139.95
Record Count:12028 Forced Non-Households:6
Total Records Printed:11460    


', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<17016027.320881422291978668.JavaMail.humprey@keats.sebis.com>', 'Mon, 26 Jan 2015 11:06:18 -0600 ', 10697, 71, 71, 1, 0, 0, 0, 0, 0, 1422291983, '2015-01-27 00:09:02', '2015-01-29 10:18:16'), +(154, 98, 'Application Results ATASCADERO1 Atascadero Mutual Water Company Billing approved', 'Run 201501231131 for the application ATASCADERO1 : Atascadero Mutual Water Company Billing
has been approved by username: talexander at 01/26/2015 11:09
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<28439487.18441422292184097.JavaMail.humprey@keats.sebis.com>', 'Mon, 26 Jan 2015 11:09:44 -0600 ', 1754, 72, 72, 1, 0, 0, 0, 0, 0, 1422292188, '2015-01-27 00:12:02', '2015-01-27 00:14:04'), +(155, 99, 'Application Results ATASCADERO1 Atascadero Mutual Water Company Billing approved', 'Run 201501231131 for the application ATASCADERO1 : Atascadero Mutual Water Company Billing
has been approved by username: talexander at 01/26/2015 11:09
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<28439487.18441422292184097.JavaMail.humprey@keats.sebis.com>', 'Mon, 26 Jan 2015 11:09:44 -0600 ', 1754, 72, 72, 1, 0, 0, 0, 0, 0, 1422292188, '2015-01-27 00:12:02', '2015-01-27 00:14:07'), +(156, 100, 'Application Results ATASCADERO1 Atascadero Mutual Water Company Billing approved', 'Run 201501231131 for the application ATASCADERO1 : Atascadero Mutual Water Company Billing
has been approved by username: talexander at 01/26/2015 11:09
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<28439487.18441422292184097.JavaMail.humprey@keats.sebis.com>', 'Mon, 26 Jan 2015 11:09:44 -0600 ', 1754, 72, 72, 1, 0, 0, 0, 0, 0, 1422292188, '2015-01-27 00:12:02', '2015-01-27 00:14:05'), +(157, 107, 'Assembly Mailing for job Atascadero Utility Billing January 2015 SegmentMAIN completed', '

---------- Forwarded message ----------
From: <access@sebis.com>
Date: Tue, Jan 27, 2015 at 5:52 PM
Subject: Assembly & Mailing for job Atascadero Utility Billing - January 2015 Segment:MAIN completed.
To: ta@acsbill.com


\n\nDear Tim Alexander,

\nAssembly & Mailing for job Atascadero Utility Billing - January 2015 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 7:52 PM on 01/27/2015.

\nItems 1-9581 having a quantity of 9581 were mailed at 01/28/2015 7:00 AM.
\nClick here to examine the task.
\n\n\n



--
Confidentiality: The contents of this message and all\nattachments have been sent in confidence and for the attention of the\naddresses only. If you are not an intended recipient, please notify us\nimmediately by reply of e-mail and then delete this message from your\nsystem. Please do not copy it or use it for any purposes, or disclose\nits contents to any other person. If an NDA or Confidentiality Agreement\nis in effect then this correspondence will fall under the provisions of\nsaid agreement.
\n
\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '', 'Wed, 28 Jan 2015 08:25:58 -0800', 5306, 74, 74, 0, 0, 0, 0, 0, 0, 1422462366, '2015-01-28 23:27:02', '2015-01-28 23:28:07'), +(158, 108, 'Assembly Mailing for job Atascadero Utility Billing January 2015 SegmentMAIN completed', '

---------- Forwarded message ----------
From: <access@sebis.com>
Date: Tue, Jan 27, 2015 at 5:52 PM
Subject: Assembly & Mailing for job Atascadero Utility Billing - January 2015 Segment:MAIN completed.
To: ta@acsbill.com


\n\nDear Tim Alexander,

\nAssembly & Mailing for job Atascadero Utility Billing - January 2015 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 7:52 PM on 01/27/2015.

\nItems 1-9581 having a quantity of 9581 were mailed at 01/28/2015 7:00 AM.
\nClick here to examine the task.
\n\n\n



--
Confidentiality: The contents of this message and all\nattachments have been sent in confidence and for the attention of the\naddresses only. If you are not an intended recipient, please notify us\nimmediately by reply of e-mail and then delete this message from your\nsystem. Please do not copy it or use it for any purposes, or disclose\nits contents to any other person. If an NDA or Confidentiality Agreement\nis in effect then this correspondence will fall under the provisions of\nsaid agreement.
\n
\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '', 'Wed, 28 Jan 2015 08:25:58 -0800', 5306, 74, 74, 0, 0, 0, 0, 0, 0, 1422462366, '2015-01-28 23:27:02', '2015-01-28 23:28:05'), +(159, 109, 'Assembly Mailing for job Atascadero Utility Billing January 2015 SegmentMAIN completed', '

---------- Forwarded message ----------
From: <access@sebis.com>
Date: Tue, Jan 27, 2015 at 5:52 PM
Subject: Assembly & Mailing for job Atascadero Utility Billing - January 2015 Segment:MAIN completed.
To: ta@acsbill.com


\n\nDear Tim Alexander,

\nAssembly & Mailing for job Atascadero Utility Billing - January 2015 and segment MAIN and application Atascadero Mutual Water Company Billing
\nwas completed at 7:52 PM on 01/27/2015.

\nItems 1-9581 having a quantity of 9581 were mailed at 01/28/2015 7:00 AM.
\nClick here to examine the task.
\n\n\n



--
Confidentiality: The contents of this message and all\nattachments have been sent in confidence and for the attention of the\naddresses only. If you are not an intended recipient, please notify us\nimmediately by reply of e-mail and then delete this message from your\nsystem. Please do not copy it or use it for any purposes, or disclose\nits contents to any other person. If an NDA or Confidentiality Agreement\nis in effect then this correspondence will fall under the provisions of\nsaid agreement.
\n
\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '', 'Wed, 28 Jan 2015 08:25:58 -0800', 5306, 74, 74, 0, 0, 0, 0, 0, 0, 1422462366, '2015-01-28 23:27:02', '2015-01-28 23:28:08'), +(160, 107, 'Assembly Mailing for job Atascadero Utility Billing January 2015 SegmentMAIN completed', '


Date: Tue, Jan 27, 2015 at 5:52 PM
Subject: Assembly & Mailing for job Atascadero Utility Billing - January 2015 Segment:MAIN completed.
To: ta@acsbill.com


Dear Tim Alexander,

Assembly & Mailing for job Atascadero Utility Billing - January 2015 and segment MAIN and application Atascadero Mutual Water Company Billing
was completed at 7:52 PM on 01/27/2015.

Items 1-9581 having a quantity of 9581 were mailed at 01/28/2015 7:00 AM.


', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '', 'Wed, 28 Jan 2015 10:08:00 -0800', 3531, 75, 75, 0, 0, 0, 0, 0, 0, 1422468485, '2015-01-29 01:09:02', '2015-01-29 01:12:07'), +(161, 108, 'Assembly Mailing for job Atascadero Utility Billing January 2015 SegmentMAIN completed', '


Date: Tue, Jan 27, 2015 at 5:52 PM
Subject: Assembly & Mailing for job Atascadero Utility Billing - January 2015 Segment:MAIN completed.
To: ta@acsbill.com


Dear Tim Alexander,

Assembly & Mailing for job Atascadero Utility Billing - January 2015 and segment MAIN and application Atascadero Mutual Water Company Billing
was completed at 7:52 PM on 01/27/2015.

Items 1-9581 having a quantity of 9581 were mailed at 01/28/2015 7:00 AM.


', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '', 'Wed, 28 Jan 2015 10:08:00 -0800', 3531, 75, 75, 0, 0, 0, 0, 0, 0, 1422468485, '2015-01-29 01:09:02', '2015-01-29 01:12:07'), +(162, 109, 'Assembly Mailing for job Atascadero Utility Billing January 2015 SegmentMAIN completed', '


Date: Tue, Jan 27, 2015 at 5:52 PM
Subject: Assembly & Mailing for job Atascadero Utility Billing - January 2015 Segment:MAIN completed.
To: ta@acsbill.com


Dear Tim Alexander,

Assembly & Mailing for job Atascadero Utility Billing - January 2015 and segment MAIN and application Atascadero Mutual Water Company Billing
was completed at 7:52 PM on 01/27/2015.

Items 1-9581 having a quantity of 9581 were mailed at 01/28/2015 7:00 AM.


', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '', 'Wed, 28 Jan 2015 10:08:00 -0800', 3531, 75, 75, 0, 0, 0, 0, 0, 0, 1422468485, '2015-01-29 01:09:02', '2015-01-29 01:12:07'), +(163, 110, 'File Uploaded to DAVIS City of Davis', '

---------- Forwarded message ----------
From: <access@sebis.com>
Date: Wed, Jan 28, 2015 at 5:35 PM
Subject: File Uploaded to DAVIS: City of Davis
To: ta@acsbill.com


\n\nDear Tim Alexander,

\nThe file Davis201502.zip of filesize 3045817 was uploaded to application DAVIS : City of Davis
by username: talexander at 01/28/2015 19:35
\n\n
\n\n



--
Confidentiality: The contents of this message and all\nattachments have been sent in confidence and for the attention of the\naddresses only. If you are not an intended recipient, please notify us\nimmediately by reply of e-mail and then delete this message from your\nsystem. Please do not copy it or use it for any purposes, or disclose\nits contents to any other person. If an NDA or Confidentiality Agreement\nis in effect then this correspondence will fall under the provisions of\nsaid agreement.
\n
\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '', 'Wed, 28 Jan 2015 18:31:56 -0800', 4563, 77, 77, 1, 0, 0, 0, 0, 0, 1422498722, '2015-01-29 09:33:02', '2015-01-29 09:34:05'), +(164, 111, 'File Uploaded to DAVIS City of Davis', '

---------- Forwarded message ----------
From: <access@sebis.com>
Date: Wed, Jan 28, 2015 at 5:35 PM
Subject: File Uploaded to DAVIS: City of Davis
To: ta@acsbill.com


\n\nDear Tim Alexander,

\nThe file Davis201502.zip of filesize 3045817 was uploaded to application DAVIS : City of Davis
by username: talexander at 01/28/2015 19:35
\n\n
\n\n



--
Confidentiality: The contents of this message and all\nattachments have been sent in confidence and for the attention of the\naddresses only. If you are not an intended recipient, please notify us\nimmediately by reply of e-mail and then delete this message from your\nsystem. Please do not copy it or use it for any purposes, or disclose\nits contents to any other person. If an NDA or Confidentiality Agreement\nis in effect then this correspondence will fall under the provisions of\nsaid agreement.
\n
\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '', 'Wed, 28 Jan 2015 18:31:56 -0800', 4563, 77, 77, 1, 0, 0, 0, 0, 0, 1422498722, '2015-01-29 09:33:02', '2015-01-29 09:34:07'), +(165, 114, 'File Uploaded to DAVIS City of Davis', '

---------- Forwarded message ----------
From: <access@sebis.com>
Date: Wed, Jan 28, 2015 at 5:35 PM
Subject: File Uploaded to DAVIS: City of Davis
To: ta@acsbill.com


\n\nDear Tim Alexander,

\nThe file Davis201502.zip of filesize 3045817 was uploaded to application DAVIS : City of Davis
by username: talexander at 01/28/2015 19:35
\n\n
\n\n



--
Confidentiality: The contents of this message and all\nattachments have been sent in confidence and for the attention of the\naddresses only. If you are not an intended recipient, please notify us\nimmediately by reply of e-mail and then delete this message from your\nsystem. Please do not copy it or use it for any purposes, or disclose\nits contents to any other person. If an NDA or Confidentiality Agreement\nis in effect then this correspondence will fall under the provisions of\nsaid agreement.
\n
\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '', 'Wed, 28 Jan 2015 18:31:56 -0800', 4563, 77, 77, 1, 0, 0, 0, 0, 0, 1422498722, '2015-01-29 09:33:02', '2015-01-29 09:34:09'), +(166, 112, 'Application DAVIS City of Davis processed', 'The application DAVIS: City of Davis has been processed.
Here are the process results.



Process Results

application code : DAVIS
run id : 201501281937
date/time : Wed-Jan-28-2015 08:58:10

Sheets Per Outer Envelope
112090121152273627139152885
10412911612023152466581891
107113317122131142161796
1121421721252341441713
Due Date
3/02/201515797
Totals
Multi-page records:0 Bank Draft:4463
Receiving a Reply Envelope:8897 Payments:$-3,470,469.10
Current Charges:$3,373,484.09 Total Due:$4,019,107.33
Previous Balance:$4,287,839.60 Total Service Charges:$4,018,768.33
Total Records Processed:15797    




', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<6188746.345271422500296306.JavaMail.humprey@keats.sebis.com>', 'Wed, 28 Jan 2015 20:58:16 -0600 ', 10021, 78, 78, 1, 0, 0, 0, 0, 0, 1422500301, '2015-01-29 10:00:03', '2015-01-29 10:17:20'), +(167, 113, 'Application DAVIS City of Davis processed', 'The application DAVIS: City of Davis has been processed.
Here are the process results.



Process Results

application code : DAVIS
run id : 201501281937
date/time : Wed-Jan-28-2015 08:58:10

Sheets Per Outer Envelope
112090121152273627139152885
10412911612023152466581891
107113317122131142161796
1121421721252341441713
Due Date
3/02/201515797
Totals
Multi-page records:0 Bank Draft:4463
Receiving a Reply Envelope:8897 Payments:$-3,470,469.10
Current Charges:$3,373,484.09 Total Due:$4,019,107.33
Previous Balance:$4,287,839.60 Total Service Charges:$4,018,768.33
Total Records Processed:15797    




', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<6188746.345271422500296306.JavaMail.humprey@keats.sebis.com>', 'Wed, 28 Jan 2015 20:58:16 -0600 ', 10021, 78, 78, 1, 0, 0, 0, 0, 0, 1422500301, '2015-01-29 10:00:03', '2015-01-29 10:17:20'), +(168, 119, 'Application DAVIS City of Davis REJECTED', '\n\nRemarks regarding the denial of approval:
\nIncorrect data uploaded
\n\nHere are the process results.
\n\n\n\nClick here to examine the process.
\n
\n\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<20517024.39191422548728875.JavaMail.humprey@keats.sebis.com>', 'Thu, 29 Jan 2015 10:25:28 -0600 ', 1833, 79, 79, 1, 0, 0, 0, 0, 0, 1422548732, '2015-01-29 23:27:02', '2015-01-29 23:28:04'), +(169, 120, 'Application DAVIS City of Davis REJECTED', '\n\nRemarks regarding the denial of approval:
\nIncorrect data uploaded
\n\nHere are the process results.
\n\n\n\nClick here to examine the process.
\n
\n\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<20517024.39191422548728875.JavaMail.humprey@keats.sebis.com>', 'Thu, 29 Jan 2015 10:25:28 -0600 ', 1833, 79, 79, 1, 0, 0, 0, 0, 0, 1422548732, '2015-01-29 23:27:02', '2015-01-29 23:28:07'), +(170, 110, 'File Uploaded to DAVIS City of Davis', 'The file DavisB021502.zip of filesize 3143700 was uploaded to application DAVIS : City of Davis
by username: talexander at 01/29/2015 10:46
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<12067644.39711422549966222.JavaMail.humprey@keats.sebis.com>', 'Thu, 29 Jan 2015 10:46:06 -0600 ', 1297, 80, 80, 1, 0, 0, 0, 0, 0, 1422549970, '2015-01-29 23:48:02', '2015-01-29 23:50:04'), +(171, 111, 'File Uploaded to DAVIS City of Davis', 'The file DavisB021502.zip of filesize 3143700 was uploaded to application DAVIS : City of Davis
by username: talexander at 01/29/2015 10:46
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<12067644.39711422549966222.JavaMail.humprey@keats.sebis.com>', 'Thu, 29 Jan 2015 10:46:06 -0600 ', 1297, 80, 80, 1, 0, 0, 0, 0, 0, 1422549970, '2015-01-29 23:48:02', '2015-01-29 23:50:06'), +(172, 114, 'File Uploaded to DAVIS City of Davis', 'The file DavisB021502.zip of filesize 3143700 was uploaded to application DAVIS : City of Davis
by username: talexander at 01/29/2015 10:46
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<12067644.39711422549966222.JavaMail.humprey@keats.sebis.com>', 'Thu, 29 Jan 2015 10:46:06 -0600 ', 1297, 80, 80, 1, 0, 0, 0, 0, 0, 1422549970, '2015-01-29 23:48:02', '2015-01-29 23:50:08'), +(173, 112, 'Application DAVIS City of Davis processed', 'The application DAVIS: City of Davis has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : DAVIS
run id : 201501291048
date/time : Thu-Jan-29-2015 12:03:07

Sheets Per Outer Envelope
112090121152273627139152885
10412911612023152466581891
107113317122131142161796
1121421721252341441713
Due Date
3/02/201515797
Totals
Multi-page records:0 Bank Draft:4463
Receiving a Reply Envelope:8897 Payments:$-3,470,469.10
Current Charges:$3,373,484.09 Total Due:$4,019,107.33
Previous Balance:$4,287,839.60 Total Service Charges:$4,018,768.33
Total Records Processed:15797    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<10643929.352251422554591652.JavaMail.humprey@keats.sebis.com>', 'Thu, 29 Jan 2015 12:03:11 -0600 ', 10021, 81, 81, 1, 0, 0, 0, 0, 0, 1422554597, '2015-01-30 01:06:03', '2015-01-30 01:08:05'); +INSERT INTO `mails` (`id`, `email_address_id`, `subject`, `body`, `body_html`, `optional_text`, `sender_email`, `reciver_email`, `fwd_accept`, `sent`, `html`, `deleted`, `x_message_id`, `x_date`, `x_size`, `x_uid`, `x_msgno`, `x_recent`, `x_flagged`, `x_answered`, `x_deleted`, `x_seen`, `x_draft`, `x_udate`, `created_at`, `updated_at`) VALUES +(174, 113, 'Application DAVIS City of Davis processed', 'The application DAVIS: City of Davis has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : DAVIS
run id : 201501291048
date/time : Thu-Jan-29-2015 12:03:07

Sheets Per Outer Envelope
112090121152273627139152885
10412911612023152466581891
107113317122131142161796
1121421721252341441713
Due Date
3/02/201515797
Totals
Multi-page records:0 Bank Draft:4463
Receiving a Reply Envelope:8897 Payments:$-3,470,469.10
Current Charges:$3,373,484.09 Total Due:$4,019,107.33
Previous Balance:$4,287,839.60 Total Service Charges:$4,018,768.33
Total Records Processed:15797    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<10643929.352251422554591652.JavaMail.humprey@keats.sebis.com>', 'Thu, 29 Jan 2015 12:03:11 -0600 ', 10021, 81, 81, 1, 0, 0, 0, 0, 0, 1422554597, '2015-01-30 01:06:03', '2015-01-30 01:08:07'), +(175, 119, 'Application DAVIS City of Davis REJECTED', '\n\nRemarks regarding the denial of approval:
\nWrong code version. Updating and reprocessing.
\n\nHere are the process results.
\n\n\n\nClick here to examine the process.
\n
\n\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<9274966.44341422566567213.JavaMail.humprey@keats.sebis.com>', 'Thu, 29 Jan 2015 15:22:47 -0600 ', 1853, 82, 82, 1, 0, 0, 0, 0, 0, 1422566570, '2015-01-30 04:24:02', '2015-01-30 04:25:04'), +(176, 120, 'Application DAVIS City of Davis REJECTED', '\n\nRemarks regarding the denial of approval:
\nWrong code version. Updating and reprocessing.
\n\nHere are the process results.
\n\n\n\nClick here to examine the process.
\n
\n\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<9274966.44341422566567213.JavaMail.humprey@keats.sebis.com>', 'Thu, 29 Jan 2015 15:22:47 -0600 ', 1853, 82, 82, 1, 0, 0, 0, 0, 0, 1422566570, '2015-01-30 04:24:02', '2015-01-30 04:25:05'), +(177, 112, 'Application DAVIS City of Davis processed', 'The application DAVIS: City of Davis has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : DAVIS
run id : 201501291513
date/time : Thu-Jan-29-2015 04:28:09

Sheets Per Outer Envelope
112090121152273627139152885
10412911612023152466581891
107113317122131142161796
1121421721252341441713
Due Date
3/02/201515797
Totals
Multi-page records:0 Bank Draft:4463
Receiving a Reply Envelope:8897 Payments:$-3,642,555.36
Current Charges:$3,373,484.09 Total Due:$4,019,107.33
Previous Balance:$4,287,839.60 Total Service Charges:$4,018,768.33
Total Records Processed:15797    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<3718163.355071422570492600.JavaMail.humprey@keats.sebis.com>', 'Thu, 29 Jan 2015 16:28:12 -0600 ', 10022, 83, 83, 1, 0, 0, 0, 0, 0, 1422570496, '2015-01-30 05:30:06', '2015-01-30 05:32:03'), +(178, 113, 'Application DAVIS City of Davis processed', 'The application DAVIS: City of Davis has been processed.
\nHere are the process results.
\n\nClick here to examine and approve the process.
\n
\n
\n

Sebis Direct, Inc.

Process Results

application code : DAVIS
run id : 201501291513
date/time : Thu-Jan-29-2015 04:28:09

Sheets Per Outer Envelope
112090121152273627139152885
10412911612023152466581891
107113317122131142161796
1121421721252341441713
Due Date
3/02/201515797
Totals
Multi-page records:0 Bank Draft:4463
Receiving a Reply Envelope:8897 Payments:$-3,642,555.36
Current Charges:$3,373,484.09 Total Due:$4,019,107.33
Previous Balance:$4,287,839.60 Total Service Charges:$4,018,768.33
Total Records Processed:15797    

1) Please approve the above process results.
2) Check the appropriate box.
3) Fax this form back to the Sebis Direct Data Center: 708-546-2006.

[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________
\n
\n\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<3718163.355071422570492600.JavaMail.humprey@keats.sebis.com>', 'Thu, 29 Jan 2015 16:28:12 -0600 ', 10022, 83, 83, 1, 0, 0, 0, 0, 0, 1422570496, '2015-01-30 05:30:06', '2015-01-30 05:32:05'), +(179, 112, 'Application DAVIS City of Davis processed', 'The application DAVIS : City of Davis has been processed.
\nHere are the process results.
\n\nClick here to approve or not-approve the process.
\n
\n
\n\n
\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<13278457.52291422652606735.JavaMail.humprey@keats.sebis.com>', 'Fri, 30 Jan 2015 15:16:46 -0600 ', 1693, 84, 84, 1, 0, 0, 0, 0, 0, 1422652609, '2015-01-31 04:18:02', '2015-01-31 04:20:07'), +(180, 113, 'Application DAVIS City of Davis processed', 'The application DAVIS : City of Davis has been processed.
\nHere are the process results.
\n\nClick here to approve or not-approve the process.
\n
\n
\n\n
\n\n
\nPlease use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<13278457.52291422652606735.JavaMail.humprey@keats.sebis.com>', 'Fri, 30 Jan 2015 15:16:46 -0600 ', 1693, 84, 84, 1, 0, 0, 0, 0, 0, 1422652609, '2015-01-31 04:18:02', '2015-01-31 04:20:09'), +(181, 115, 'Application Results DAVIS City of Davis approved', 'Run 201501301245 for the application DAVIS : City of Davis
has been approved by username: talexander at 01/30/2015 15:42
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<6598350.52441422654132895.JavaMail.humprey@keats.sebis.com>', 'Fri, 30 Jan 2015 15:42:12 -0600 ', 1720, 85, 85, 1, 0, 0, 0, 0, 0, 1422654138, '2015-01-31 04:45:03', '2015-01-31 04:46:03'), +(182, 116, 'Application Results DAVIS City of Davis approved', 'Run 201501301245 for the application DAVIS : City of Davis
has been approved by username: talexander at 01/30/2015 15:42
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<6598350.52441422654132895.JavaMail.humprey@keats.sebis.com>', 'Fri, 30 Jan 2015 15:42:12 -0600 ', 1720, 85, 85, 1, 0, 0, 0, 0, 0, 1422654138, '2015-01-31 04:45:03', '2015-01-31 04:46:05'), +(183, 117, 'Laser Imaging for job City of Davis Utility Billing January 2015 SegmentMAIN completed', 'Laser imaging for job City of Davis Utility Billing - January 2015 and segment MAIN and application City of Davis
\nwas completed by tmoran at 2015-01-31 07:59:48.140221.\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<31698919.54301422723411964.JavaMail.humprey@keats.sebis.com>', 'Sat, 31 Jan 2015 10:56:51 -0600 ', 1357, 86, 86, 1, 0, 0, 0, 0, 0, 1422723416, '2015-01-31 23:57:02', '2015-01-31 23:58:06'), +(184, 118, 'Laser Imaging for job City of Davis Utility Billing January 2015 SegmentMAIN completed', 'Laser imaging for job City of Davis Utility Billing - January 2015 and segment MAIN and application City of Davis
\nwas completed by tmoran at 2015-01-31 07:59:48.140221.\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<31698919.54301422723411964.JavaMail.humprey@keats.sebis.com>', 'Sat, 31 Jan 2015 10:56:51 -0600 ', 1357, 86, 86, 1, 0, 0, 0, 0, 0, 1422723416, '2015-01-31 23:57:02', '2015-01-31 23:58:07'), +(185, 121, 'Assembly Mailing for job City of Davis Utility Billing January 2015 SegmentMAIN completed', 'Assembly & Mailing for job City of Davis Utility Billing - January 2015 and segment MAIN and application City of Davis
\nwas completed at 11:03 AM on 02/03/2015.

\nItems 1-13145 having a quantity of 13145 were mailed at 02/03/2015 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<20637666.388041422983032303.JavaMail.humprey@keats.sebis.com>', 'Tue, 3 Feb 2015 11:03:52 -0600 (', 1643, 87, 87, 1, 0, 0, 0, 0, 0, 1422983035, '2015-02-04 00:06:02', '2015-02-04 00:08:05'), +(186, 122, 'Assembly Mailing for job City of Davis Utility Billing January 2015 SegmentMAIN completed', 'Assembly & Mailing for job City of Davis Utility Billing - January 2015 and segment MAIN and application City of Davis
\nwas completed at 11:03 AM on 02/03/2015.

\nItems 1-13145 having a quantity of 13145 were mailed at 02/03/2015 7:00 PM.
\nClick here to examine the task.
\n\n\n', NULL, NULL, NULL, NULL, 0, 1, 0, 0, '<20637666.388041422983032303.JavaMail.humprey@keats.sebis.com>', 'Tue, 3 Feb 2015 11:03:52 -0600 (', 1643, 87, 87, 1, 0, 0, 0, 0, 0, 1422983035, '2015-02-04 00:06:02', '2015-02-04 00:08:07'), +(187, 78, 'File Uploaded to CALCTY California City Application', 'The file CaCity_20150310.zip of filesize 398013 was uploaded to application CALCTY : California City Application
by username: talexander at 02/17/2015 14:51
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<9217258.120261424206312971.JavaMail.humprey@keats.sebis.com>', 'Tue, 17 Feb 2015 14:51:52 -0600 ', 1314, 88, 88, 1, 0, 0, 0, 0, 0, 1424206316, '2015-02-18 03:54:03', '2015-02-18 03:55:08'), +(188, 79, 'File Uploaded to CALCTY California City Application', 'The file CaCity_20150310.zip of filesize 398013 was uploaded to application CALCTY : California City Application
by username: talexander at 02/17/2015 14:51
\n\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<9217258.120261424206312971.JavaMail.humprey@keats.sebis.com>', 'Tue, 17 Feb 2015 14:51:52 -0600 ', 1314, 88, 88, 1, 0, 0, 0, 0, 0, 1424206316, '2015-02-18 03:54:03', '2015-02-18 03:55:10'), +(189, 80, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
Here are the process results.
Click here to examine and approve the process.


Process Results

application code : CALCTY
run id : 201502171500
date/time : Tue-Feb-17-2015 03:56:03

Process Message










Sheets Per Outer Envelope
1340324142371
11125151282
12231406292
182
Totals
Total Records Printed:3959 Total Records Processed:4310
Receiving a reply envelope:3440    

1) Please approve the above process results.


[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________

Please use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<3063385.499741424210167409.JavaMail.humprey@keats.sebis.com>', 'Tue, 17 Feb 2015 15:56:07 -0600 ', 6483, 89, 89, 1, 0, 0, 0, 0, 0, 1424210171, '2015-02-18 04:57:02', '2015-02-18 06:00:24'), +(190, 81, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
Here are the process results.
Click here to examine and approve the process.


Process Results

application code : CALCTY
run id : 201502171500
date/time : Tue-Feb-17-2015 03:56:03

Process Message










Sheets Per Outer Envelope
1340324142371
11125151282
12231406292
182
Totals
Total Records Printed:3959 Total Records Processed:4310
Receiving a reply envelope:3440    

1) Please approve the above process results.


[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________

Please use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<3063385.499741424210167409.JavaMail.humprey@keats.sebis.com>', 'Tue, 17 Feb 2015 15:56:07 -0600 ', 6483, 89, 89, 1, 0, 0, 0, 0, 0, 1424210171, '2015-02-18 04:57:02', '2015-02-18 06:00:24'), +(191, 82, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
Here are the process results.
Click here to examine and approve the process.


Process Results

application code : CALCTY
run id : 201502171500
date/time : Tue-Feb-17-2015 03:56:03

Process Message










Sheets Per Outer Envelope
1340324142371
11125151282
12231406292
182
Totals
Total Records Printed:3959 Total Records Processed:4310
Receiving a reply envelope:3440    

1) Please approve the above process results.


[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________

Please use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<3063385.499741424210167409.JavaMail.humprey@keats.sebis.com>', 'Tue, 17 Feb 2015 15:56:07 -0600 ', 6483, 89, 89, 1, 0, 0, 0, 0, 0, 1424210171, '2015-02-18 04:57:02', '2015-02-18 06:00:24'), +(192, 94, 'Application CALCTY California City Application processed', 'The application CALCTY: California City Application has been processed.
Here are the process results.
Click here to examine and approve the process.


Process Results

application code : CALCTY
run id : 201502171500
date/time : Tue-Feb-17-2015 03:56:03

Process Message










Sheets Per Outer Envelope
1340324142371
11125151282
12231406292
182
Totals
Total Records Printed:3959 Total Records Processed:4310
Receiving a reply envelope:3440    

1) Please approve the above process results.


[ ] Process results are correct, Proceed with job.

[ ] Process results are NOT correct, DO NOT proceed with job.


Approval:__________________________________________ Date:_______________

Please use the link above to submit an electronic approval decision. Faxing approval decisions is no longer supported.
', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<3063385.499741424210167409.JavaMail.humprey@keats.sebis.com>', 'Tue, 17 Feb 2015 15:56:07 -0600 ', 6483, 89, 89, 1, 0, 0, 0, 0, 0, 1424210171, '2015-02-18 04:57:02', '2015-02-18 06:00:24'), +(193, 83, 'Application Results CALCTY California City Application approved', 'Run 201502171500 for the application CALCTY : California City Application
has been approved by username: talexander at 02/17/2015 18:08
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<24950817.122121424218111890.JavaMail.humprey@keats.sebis.com>', 'Tue, 17 Feb 2015 18:08:31 -0600 ', 1736, 90, 90, 1, 0, 0, 0, 0, 0, 1424218116, '2015-02-18 07:09:02', '2015-02-18 07:10:05'), +(194, 84, 'Application Results CALCTY California City Application approved', 'Run 201502171500 for the application CALCTY : California City Application
has been approved by username: talexander at 02/17/2015 18:08
\n\n\n\nHere are the process results.
\n\nClick here to examine the process.
\n
\n
\n\n
\n
\n\n', NULL, NULL, NULL, NULL, 0, 1, 1, 0, '<24950817.122121424218111890.JavaMail.humprey@keats.sebis.com>', 'Tue, 17 Feb 2015 18:08:31 -0600 ', 1736, 90, 90, 1, 0, 0, 0, 0, 0, 1424218116, '2015-02-18 07:09:02', '2015-02-18 07:10:07'); -- -------------------------------------------------------- @@ -73,6 +410,7 @@ CREATE TABLE IF NOT EXISTS `keywords_list` ( -- Table structure for table `migrations` -- +DROP TABLE IF EXISTS `migrations`; CREATE TABLE IF NOT EXISTS `migrations` ( `migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `batch` int(11) NOT NULL @@ -94,6 +432,7 @@ INSERT INTO `migrations` (`migration`, `batch`) VALUES -- Table structure for table `throttle` -- +DROP TABLE IF EXISTS `throttle`; CREATE TABLE IF NOT EXISTS `throttle` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned DEFAULT NULL, @@ -106,7 +445,16 @@ CREATE TABLE IF NOT EXISTS `throttle` ( `banned_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `throttle_user_id_index` (`user_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ; + +-- +-- Dumping data for table `throttle` +-- + +INSERT INTO `throttle` (`id`, `user_id`, `ip_address`, `attempts`, `suspended`, `banned`, `last_attempt_at`, `suspended_at`, `banned_at`) VALUES +(1, 1, NULL, 2, 0, 0, '2015-01-15 21:17:00', NULL, NULL), +(2, 2, NULL, 0, 0, 0, '2014-12-29 23:16:26', NULL, NULL), +(3, 4, NULL, 0, 0, 0, NULL, NULL, NULL); -- -------------------------------------------------------- @@ -114,6 +462,7 @@ CREATE TABLE IF NOT EXISTS `throttle` ( -- Table structure for table `users` -- +DROP TABLE IF EXISTS `users`; CREATE TABLE IF NOT EXISTS `users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, @@ -133,7 +482,17 @@ CREATE TABLE IF NOT EXISTS `users` ( UNIQUE KEY `users_email_unique` (`email`), KEY `users_activation_code_index` (`activation_code`), KEY `users_reset_password_code_index` (`reset_password_code`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=5 ; + +-- +-- Dumping data for table `users` +-- + +INSERT INTO `users` (`id`, `email`, `password`, `permissions`, `activated`, `activation_code`, `activated_at`, `last_login`, `persist_code`, `reset_password_code`, `first_name`, `last_name`, `created_at`, `updated_at`) VALUES +(1, 'dk18184@gmail.com', '$2y$10$v3Q/xFpDwa586bbJTG8b1eStIUSCsOgIoqQl1oQQIfdwJy7.IfV.q', NULL, 1, NULL, NULL, '2015-01-12 00:21:22', '$2y$10$nxHiJJ75/0gv5nE3Dgo0bekCfoqD6WIEycvbY8cyxSMnXaxj.yNQC', NULL, 'Dren', 'Dude', '0000-00-00 00:00:00', '2015-01-12 00:21:22'), +(2, 'ta@alexent.com', '$2y$10$v3Q/xFpDwa586bbJTG8b1eStIUSCsOgIoqQl1oQQIfdwJy7.IfV.q', NULL, 1, NULL, NULL, '2015-02-18 05:59:17', '$2y$10$oGkrLgphbq.rno0XInHA4.ljHI/Cvw0Inpf9mVGqFqxTJdvbZBUgu', NULL, 'Time', 'Alxes', '0000-00-00 00:00:00', '2015-02-18 05:59:17'), +(3, 'sample@gmail.com', '$2y$10$v3Q/xFpDwa586bbJTG8b1eStIUSCsOgIoqQl1oQQIfd...', NULL, 1, NULL, NULL, NULL, NULL, NULL, 'Sample', 'User', '2014-12-29 07:00:00', '2014-12-29 07:00:00'), +(4, 'test@gmail.com', '$2y$10$9GAlbRTYS5vM986Eh4WwruUQ6kIJSuyksGVmDExedNIfqWxRcjveC', NULL, 1, NULL, '2014-12-30 02:49:38', '2014-12-30 02:50:03', '$2y$10$EAl1lk8hyfQWN6qY4LkF/.n1gmRUsIG6qoO3NzJHpV.9io50AdAHS', NULL, 'dude', 'dude', '2014-12-30 02:49:38', '2014-12-30 02:50:03'); -- -------------------------------------------------------- @@ -141,12 +500,21 @@ CREATE TABLE IF NOT EXISTS `users` ( -- Table structure for table `users_groups` -- +DROP TABLE IF EXISTS `users_groups`; CREATE TABLE IF NOT EXISTS `users_groups` ( `user_id` int(10) unsigned NOT NULL, `group_id` int(10) unsigned NOT NULL, PRIMARY KEY (`user_id`,`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; +-- +-- Dumping data for table `users_groups` +-- + +INSERT INTO `users_groups` (`user_id`, `group_id`) VALUES +(1, 1), +(2, 1); + /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/out.txt b/out.txt index d865c2e..cfccd2f 100644 --- a/out.txt +++ b/out.txt @@ -1,6291 +1,9 @@ -Reading emails...(ALL) -= = = = = = -Read Emails -= = = = = = -Count Emails: 31 -------------------------------------------------------------------------------------- +options +--html_enable=[...] +--email_search='[...] --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} +Reading Emails: + Email search: ALL + HTML enabled: true --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(7) "CALCTY:" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(11) "Application" -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(7) "CALCTY:" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(11) "Application" -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(7) "CALCTY:" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(11) "Application" -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(7) "CALCTY:" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(11) "Application" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(7) "CALCTY:" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(11) "Application" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(7) "CALCTY:" - [3]=> - string(10) "California" - [4]=> - string(4) "City" - [5]=> - string(11) "Application" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(7) "CALCTY:" - [3]=> - string(10) "California" - [4]=> - string(4) "City" - [5]=> - string(11) "Application" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(7) "CALCTY:" - [3]=> - string(10) "California" - [4]=> - string(4) "City" - [5]=> - string(11) "Application" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(7) "CALCTY:" - [3]=> - string(10) "California" - [4]=> - string(4) "City" - [5]=> - string(11) "Application" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(7) "CALCTY:" - [3]=> - string(10) "California" - [4]=> - string(4) "City" - [5]=> - string(11) "Application" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(14) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "California" - [6]=> - string(4) "City" - [7]=> - string(7) "Utility" - [8]=> - string(7) "Billing" - [9]=> - string(1) "-" - [10]=> - string(7) "October" - [11]=> - string(4) "2014" - [12]=> - string(12) "Segment:MAIN" - [13]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 7 | Email: drk3@gmail.com | Name: Dren.K -Email stored for: | ID: 12 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 14 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 15 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(14) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "California" - [6]=> - string(4) "City" - [7]=> - string(7) "Utility" - [8]=> - string(7) "Billing" - [9]=> - string(1) "-" - [10]=> - string(7) "October" - [11]=> - string(4) "2014" - [12]=> - string(12) "Segment:MAIN" - [13]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(14) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "California" - [6]=> - string(4) "City" - [7]=> - string(7) "Utility" - [8]=> - string(7) "Billing" - [9]=> - string(1) "-" - [10]=> - string(7) "October" - [11]=> - string(4) "2014" - [12]=> - string(12) "Segment:MAIN" - [13]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(14) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "California" - [6]=> - string(4) "City" - [7]=> - string(7) "Utility" - [8]=> - string(7) "Billing" - [9]=> - string(1) "-" - [10]=> - string(7) "October" - [11]=> - string(4) "2014" - [12]=> - string(12) "Segment:MAIN" - [13]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(14) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "California" - [6]=> - string(4) "City" - [7]=> - string(7) "Utility" - [8]=> - string(7) "Billing" - [9]=> - string(1) "-" - [10]=> - string(7) "October" - [11]=> - string(4) "2014" - [12]=> - string(12) "Segment:MAIN" - [13]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- Diff Array -------------------- -array(1) { - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(12) "ATASCADERO1:" - [4]=> - string(10) "Atascadero" - [5]=> - string(6) "Mutual" - [6]=> - string(5) "Water" - [7]=> - string(7) "Company" - [8]=> - string(7) "Billing" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(12) "ATASCADERO1:" - [4]=> - string(10) "Atascadero" - [5]=> - string(6) "Mutual" - [6]=> - string(5) "Water" - [7]=> - string(7) "Company" - [8]=> - string(7) "Billing" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(12) "ATASCADERO1:" - [4]=> - string(10) "Atascadero" - [5]=> - string(6) "Mutual" - [6]=> - string(5) "Water" - [7]=> - string(7) "Company" - [8]=> - string(7) "Billing" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(12) "ATASCADERO1:" - [4]=> - string(10) "Atascadero" - [5]=> - string(6) "Mutual" - [6]=> - string(5) "Water" - [7]=> - string(7) "Company" - [8]=> - string(7) "Billing" -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 21 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 23 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 25 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(12) "ATASCADERO1:" - [4]=> - string(10) "Atascadero" - [5]=> - string(6) "Mutual" - [6]=> - string(5) "Water" - [7]=> - string(7) "Company" - [8]=> - string(7) "Billing" -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(8) { - [0]=> - string(11) "Application" - [1]=> - string(12) "ATASCADERO1:" - [2]=> - string(10) "Atascadero" - [3]=> - string(6) "Mutual" - [4]=> - string(5) "Water" - [5]=> - string(7) "Company" - [6]=> - string(7) "Billing" - [7]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(8) { - [0]=> - string(11) "Application" - [1]=> - string(12) "ATASCADERO1:" - [2]=> - string(10) "Atascadero" - [3]=> - string(6) "Mutual" - [4]=> - string(5) "Water" - [5]=> - string(7) "Company" - [6]=> - string(7) "Billing" - [7]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(8) { - [0]=> - string(11) "Application" - [1]=> - string(12) "ATASCADERO1:" - [2]=> - string(10) "Atascadero" - [3]=> - string(6) "Mutual" - [4]=> - string(5) "Water" - [5]=> - string(7) "Company" - [6]=> - string(7) "Billing" - [7]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(8) { - [0]=> - string(11) "Application" - [1]=> - string(12) "ATASCADERO1:" - [2]=> - string(10) "Atascadero" - [3]=> - string(6) "Mutual" - [4]=> - string(5) "Water" - [5]=> - string(7) "Company" - [6]=> - string(7) "Billing" - [7]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 21 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 23 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 25 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(8) { - [0]=> - string(11) "Application" - [1]=> - string(12) "ATASCADERO1:" - [2]=> - string(10) "Atascadero" - [3]=> - string(6) "Mutual" - [4]=> - string(5) "Water" - [5]=> - string(7) "Company" - [6]=> - string(7) "Billing" - [7]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(8) { - [0]=> - string(11) "Application" - [1]=> - string(12) "ATASCADERO1:" - [2]=> - string(10) "Atascadero" - [3]=> - string(6) "Mutual" - [4]=> - string(5) "Water" - [5]=> - string(7) "Company" - [6]=> - string(7) "Billing" - [7]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(8) { - [0]=> - string(11) "Application" - [1]=> - string(12) "ATASCADERO1:" - [2]=> - string(10) "Atascadero" - [3]=> - string(6) "Mutual" - [4]=> - string(5) "Water" - [5]=> - string(7) "Company" - [6]=> - string(7) "Billing" - [7]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(8) { - [0]=> - string(11) "Application" - [1]=> - string(12) "ATASCADERO1:" - [2]=> - string(10) "Atascadero" - [3]=> - string(6) "Mutual" - [4]=> - string(5) "Water" - [5]=> - string(7) "Company" - [6]=> - string(7) "Billing" - [7]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(8) { - [0]=> - string(11) "Application" - [1]=> - string(12) "ATASCADERO1:" - [2]=> - string(10) "Atascadero" - [3]=> - string(6) "Mutual" - [4]=> - string(5) "Water" - [5]=> - string(7) "Company" - [6]=> - string(7) "Billing" - [7]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 21 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 23 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 25 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(8) { - [0]=> - string(11) "Application" - [1]=> - string(12) "ATASCADERO1:" - [2]=> - string(10) "Atascadero" - [3]=> - string(6) "Mutual" - [4]=> - string(5) "Water" - [5]=> - string(7) "Company" - [6]=> - string(7) "Billing" - [7]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(12) "ATASCADERO1:" - [4]=> - string(10) "Atascadero" - [5]=> - string(6) "Mutual" - [6]=> - string(5) "Water" - [7]=> - string(7) "Company" - [8]=> - string(7) "Billing" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(12) "ATASCADERO1:" - [4]=> - string(10) "Atascadero" - [5]=> - string(6) "Mutual" - [6]=> - string(5) "Water" - [7]=> - string(7) "Company" - [8]=> - string(7) "Billing" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(12) "ATASCADERO1:" - [4]=> - string(10) "Atascadero" - [5]=> - string(6) "Mutual" - [6]=> - string(5) "Water" - [7]=> - string(7) "Company" - [8]=> - string(7) "Billing" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(12) "ATASCADERO1:" - [4]=> - string(10) "Atascadero" - [5]=> - string(6) "Mutual" - [6]=> - string(5) "Water" - [7]=> - string(7) "Company" - [8]=> - string(7) "Billing" -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 21 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 23 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 25 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(12) "ATASCADERO1:" - [4]=> - string(10) "Atascadero" - [5]=> - string(6) "Mutual" - [6]=> - string(5) "Water" - [7]=> - string(7) "Company" - [8]=> - string(7) "Billing" -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(16) { - [0]=> - string(3) "***" - [1]=> - string(10) "Constraint" - [2]=> - string(10) "Violation!" - [3]=> - string(3) "***" - [4]=> - string(11) "Application" - [5]=> - string(12) "ATASCADERO1:" - [6]=> - string(10) "Atascadero" - [7]=> - string(6) "Mutual" - [8]=> - string(5) "Water" - [9]=> - string(7) "Company" - [10]=> - string(7) "Billing" - [11]=> - string(10) "processed." - [12]=> - string(3) "***" - [13]=> - string(10) "Constraint" - [14]=> - string(10) "Violation!" - [15]=> - string(3) "***" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(16) { - [0]=> - string(3) "***" - [1]=> - string(10) "Constraint" - [2]=> - string(10) "Violation!" - [3]=> - string(3) "***" - [4]=> - string(11) "Application" - [5]=> - string(12) "ATASCADERO1:" - [6]=> - string(10) "Atascadero" - [7]=> - string(6) "Mutual" - [8]=> - string(5) "Water" - [9]=> - string(7) "Company" - [10]=> - string(7) "Billing" - [11]=> - string(10) "processed." - [12]=> - string(3) "***" - [13]=> - string(10) "Constraint" - [14]=> - string(10) "Violation!" - [15]=> - string(3) "***" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(16) { - [0]=> - string(3) "***" - [1]=> - string(10) "Constraint" - [2]=> - string(10) "Violation!" - [3]=> - string(3) "***" - [4]=> - string(11) "Application" - [5]=> - string(12) "ATASCADERO1:" - [6]=> - string(10) "Atascadero" - [7]=> - string(6) "Mutual" - [8]=> - string(5) "Water" - [9]=> - string(7) "Company" - [10]=> - string(7) "Billing" - [11]=> - string(10) "processed." - [12]=> - string(3) "***" - [13]=> - string(10) "Constraint" - [14]=> - string(10) "Violation!" - [15]=> - string(3) "***" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(16) { - [0]=> - string(3) "***" - [1]=> - string(10) "Constraint" - [2]=> - string(10) "Violation!" - [3]=> - string(3) "***" - [4]=> - string(11) "Application" - [5]=> - string(12) "ATASCADERO1:" - [6]=> - string(10) "Atascadero" - [7]=> - string(6) "Mutual" - [8]=> - string(5) "Water" - [9]=> - string(7) "Company" - [10]=> - string(7) "Billing" - [11]=> - string(10) "processed." - [12]=> - string(3) "***" - [13]=> - string(10) "Constraint" - [14]=> - string(10) "Violation!" - [15]=> - string(3) "***" -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 21 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 23 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 25 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(16) { - [0]=> - string(3) "***" - [1]=> - string(10) "Constraint" - [2]=> - string(10) "Violation!" - [3]=> - string(3) "***" - [4]=> - string(11) "Application" - [5]=> - string(12) "ATASCADERO1:" - [6]=> - string(10) "Atascadero" - [7]=> - string(6) "Mutual" - [8]=> - string(5) "Water" - [9]=> - string(7) "Company" - [10]=> - string(7) "Billing" - [11]=> - string(10) "processed." - [12]=> - string(3) "***" - [13]=> - string(10) "Constraint" - [14]=> - string(10) "Violation!" - [15]=> - string(3) "***" -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(12) "ATASCADERO1:" - [3]=> - string(10) "Atascadero" - [4]=> - string(6) "Mutual" - [5]=> - string(5) "Water" - [6]=> - string(7) "Company" - [7]=> - string(7) "Billing" - [8]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(12) "ATASCADERO1:" - [3]=> - string(10) "Atascadero" - [4]=> - string(6) "Mutual" - [5]=> - string(5) "Water" - [6]=> - string(7) "Company" - [7]=> - string(7) "Billing" - [8]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(12) "ATASCADERO1:" - [3]=> - string(10) "Atascadero" - [4]=> - string(6) "Mutual" - [5]=> - string(5) "Water" - [6]=> - string(7) "Company" - [7]=> - string(7) "Billing" - [8]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(12) "ATASCADERO1:" - [3]=> - string(10) "Atascadero" - [4]=> - string(6) "Mutual" - [5]=> - string(5) "Water" - [6]=> - string(7) "Company" - [7]=> - string(7) "Billing" - [8]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 21 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 23 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 25 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(9) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(12) "ATASCADERO1:" - [3]=> - string(10) "Atascadero" - [4]=> - string(6) "Mutual" - [5]=> - string(5) "Water" - [6]=> - string(7) "Company" - [7]=> - string(7) "Billing" - [8]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(13) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "Atascadero" - [6]=> - string(7) "Utility" - [7]=> - string(7) "Billing" - [8]=> - string(1) "-" - [9]=> - string(7) "October" - [10]=> - string(4) "2014" - [11]=> - string(12) "Segment:MAIN" - [12]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- Diff Array -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(13) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "Atascadero" - [6]=> - string(7) "Utility" - [7]=> - string(7) "Billing" - [8]=> - string(1) "-" - [9]=> - string(7) "October" - [10]=> - string(4) "2014" - [11]=> - string(12) "Segment:MAIN" - [12]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(13) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "Atascadero" - [6]=> - string(7) "Utility" - [7]=> - string(7) "Billing" - [8]=> - string(1) "-" - [9]=> - string(7) "October" - [10]=> - string(4) "2014" - [11]=> - string(12) "Segment:MAIN" - [12]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(13) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "Atascadero" - [6]=> - string(7) "Utility" - [7]=> - string(7) "Billing" - [8]=> - string(1) "-" - [9]=> - string(7) "October" - [10]=> - string(4) "2014" - [11]=> - string(12) "Segment:MAIN" - [12]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 21 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 23 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 25 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(13) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "Atascadero" - [6]=> - string(7) "Utility" - [7]=> - string(7) "Billing" - [8]=> - string(1) "-" - [9]=> - string(7) "October" - [10]=> - string(4) "2014" - [11]=> - string(12) "Segment:MAIN" - [12]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 16 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 17 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 18 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(6) "DAVIS:" - [4]=> - string(4) "City" - [5]=> - string(2) "of" - [6]=> - string(5) "Davis" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(6) "DAVIS:" - [4]=> - string(4) "City" - [5]=> - string(2) "of" - [6]=> - string(5) "Davis" -} - --------------------- Intersect -------------------- -array(1) { - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(6) "DAVIS:" - [4]=> - string(4) "City" - [5]=> - string(2) "of" - [6]=> - string(5) "Davis" -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 20 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 22 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 24 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(6) "DAVIS:" - [4]=> - string(4) "City" - [5]=> - string(2) "of" - [6]=> - string(5) "Davis" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(6) "DAVIS:" - [4]=> - string(4) "City" - [5]=> - string(2) "of" - [6]=> - string(5) "Davis" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 20 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 22 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 24 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(6) "DAVIS:" - [4]=> - string(4) "City" - [5]=> - string(2) "of" - [6]=> - string(5) "Davis" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(6) "DAVIS:" - [4]=> - string(4) "City" - [5]=> - string(2) "of" - [6]=> - string(5) "Davis" -} - --------------------- Intersect -------------------- -array(1) { - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(6) "DAVIS:" - [4]=> - string(4) "City" - [5]=> - string(2) "of" - [6]=> - string(5) "Davis" -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 20 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 22 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 24 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(6) "DAVIS:" - [4]=> - string(4) "City" - [5]=> - string(2) "of" - [6]=> - string(5) "Davis" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(6) "DAVIS:" - [4]=> - string(4) "City" - [5]=> - string(2) "of" - [6]=> - string(5) "Davis" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(1) { - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 20 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 22 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 24 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(9) "REJECTED." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 20 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 22 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 24 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(6) "DAVIS:" - [2]=> - string(4) "City" - [3]=> - string(2) "of" - [4]=> - string(5) "Davis" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(6) "DAVIS:" - [3]=> - string(4) "City" - [4]=> - string(2) "of" - [5]=> - string(5) "Davis" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(6) "DAVIS:" - [3]=> - string(4) "City" - [4]=> - string(2) "of" - [5]=> - string(5) "Davis" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(1) { - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(6) "DAVIS:" - [3]=> - string(4) "City" - [4]=> - string(2) "of" - [5]=> - string(5) "Davis" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 20 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 22 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 24 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(6) "DAVIS:" - [3]=> - string(4) "City" - [4]=> - string(2) "of" - [5]=> - string(5) "Davis" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(6) "DAVIS:" - [3]=> - string(4) "City" - [4]=> - string(2) "of" - [5]=> - string(5) "Davis" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(15) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(4) "City" - [6]=> - string(2) "of" - [7]=> - string(5) "Davis" - [8]=> - string(7) "Utility" - [9]=> - string(7) "Billing" - [10]=> - string(1) "-" - [11]=> - string(7) "October" - [12]=> - string(4) "2014" - [13]=> - string(12) "Segment:MAIN" - [14]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- Diff Array -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(15) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(4) "City" - [6]=> - string(2) "of" - [7]=> - string(5) "Davis" - [8]=> - string(7) "Utility" - [9]=> - string(7) "Billing" - [10]=> - string(1) "-" - [11]=> - string(7) "October" - [12]=> - string(4) "2014" - [13]=> - string(12) "Segment:MAIN" - [14]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(1) { - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(15) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(4) "City" - [6]=> - string(2) "of" - [7]=> - string(5) "Davis" - [8]=> - string(7) "Utility" - [9]=> - string(7) "Billing" - [10]=> - string(1) "-" - [11]=> - string(7) "October" - [12]=> - string(4) "2014" - [13]=> - string(12) "Segment:MAIN" - [14]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 20 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 22 | Email: ta@alexander-co.com | Name: Tim -Email stored for: | ID: 24 | Email: tlac@alexent.com | Name: Tim - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(15) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(4) "City" - [6]=> - string(2) "of" - [7]=> - string(5) "Davis" - [8]=> - string(7) "Utility" - [9]=> - string(7) "Billing" - [10]=> - string(1) "-" - [11]=> - string(7) "October" - [12]=> - string(4) "2014" - [13]=> - string(12) "Segment:MAIN" - [14]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(15) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(4) "City" - [6]=> - string(2) "of" - [7]=> - string(5) "Davis" - [8]=> - string(7) "Utility" - [9]=> - string(7) "Billing" - [10]=> - string(1) "-" - [11]=> - string(7) "October" - [12]=> - string(4) "2014" - [13]=> - string(12) "Segment:MAIN" - [14]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- Diff Array -------------------- -array(1) { - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(2) { - [0]=> - string(4) "test" - [1]=> - string(3) "new" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(2) { - [0]=> - string(4) "test" - [1]=> - string(3) "new" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(2) { - [0]=> - string(4) "test" - [1]=> - string(3) "new" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(2) { - [0]=> - string(4) "test" - [1]=> - string(3) "new" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(2) { - [0]=> - string(4) "test" - [1]=> - string(3) "new" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(2) { - [0]=> - string(4) "test" - [1]=> - string(5) "again" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(2) { - [0]=> - string(4) "test" - [1]=> - string(5) "again" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(2) { - [0]=> - string(4) "test" - [1]=> - string(5) "again" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(2) { - [0]=> - string(4) "test" - [1]=> - string(5) "again" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(2) { - [0]=> - string(4) "test" - [1]=> - string(5) "again" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(4) "test" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(4) "test" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(4) "test" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(4) "test" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(4) "test" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(6) "asdasd" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(6) "asdasd" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(6) "asdasd" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(6) "asdasd" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(6) "asdasd" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(4) "dddd" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(4) "dddd" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(4) "dddd" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(4) "dddd" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(1) { - [0]=> - string(4) "dddd" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(7) "CALCTY:" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(11) "Application" -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(7) "CALCTY:" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(11) "Application" -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(7) "CALCTY:" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(11) "Application" -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(7) "CALCTY:" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(11) "Application" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(4) "File" - [1]=> - string(8) "Uploaded" - [2]=> - string(2) "to" - [3]=> - string(7) "CALCTY:" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(11) "Application" -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(6) { - [0]=> - string(11) "Application" - [1]=> - string(7) "CALCTY:" - [2]=> - string(10) "California" - [3]=> - string(4) "City" - [4]=> - string(11) "Application" - [5]=> - string(10) "processed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(7) "CALCTY:" - [3]=> - string(10) "California" - [4]=> - string(4) "City" - [5]=> - string(11) "Application" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(7) "CALCTY:" - [3]=> - string(10) "California" - [4]=> - string(4) "City" - [5]=> - string(11) "Application" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(7) "CALCTY:" - [3]=> - string(10) "California" - [4]=> - string(4) "City" - [5]=> - string(11) "Application" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(7) "CALCTY:" - [3]=> - string(10) "California" - [4]=> - string(4) "City" - [5]=> - string(11) "Application" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(7) { - [0]=> - string(11) "Application" - [1]=> - string(7) "Results" - [2]=> - string(7) "CALCTY:" - [3]=> - string(10) "California" - [4]=> - string(4) "City" - [5]=> - string(11) "Application" - [6]=> - string(9) "approved." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(13) { - [0]=> - string(5) "Laser" - [1]=> - string(7) "Imaging" - [2]=> - string(3) "for" - [3]=> - string(3) "job" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(7) "Utility" - [7]=> - string(7) "Billing" - [8]=> - string(1) "-" - [9]=> - string(8) "November" - [10]=> - string(4) "2014" - [11]=> - string(12) "Segment:MAIN" - [12]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(1) { - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(13) { - [0]=> - string(5) "Laser" - [1]=> - string(7) "Imaging" - [2]=> - string(3) "for" - [3]=> - string(3) "job" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(7) "Utility" - [7]=> - string(7) "Billing" - [8]=> - string(1) "-" - [9]=> - string(8) "November" - [10]=> - string(4) "2014" - [11]=> - string(12) "Segment:MAIN" - [12]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(13) { - [0]=> - string(5) "Laser" - [1]=> - string(7) "Imaging" - [2]=> - string(3) "for" - [3]=> - string(3) "job" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(7) "Utility" - [7]=> - string(7) "Billing" - [8]=> - string(1) "-" - [9]=> - string(8) "November" - [10]=> - string(4) "2014" - [11]=> - string(12) "Segment:MAIN" - [12]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(13) { - [0]=> - string(5) "Laser" - [1]=> - string(7) "Imaging" - [2]=> - string(3) "for" - [3]=> - string(3) "job" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(7) "Utility" - [7]=> - string(7) "Billing" - [8]=> - string(1) "-" - [9]=> - string(8) "November" - [10]=> - string(4) "2014" - [11]=> - string(12) "Segment:MAIN" - [12]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(13) { - [0]=> - string(5) "Laser" - [1]=> - string(7) "Imaging" - [2]=> - string(3) "for" - [3]=> - string(3) "job" - [4]=> - string(10) "California" - [5]=> - string(4) "City" - [6]=> - string(7) "Utility" - [7]=> - string(7) "Billing" - [8]=> - string(1) "-" - [9]=> - string(8) "November" - [10]=> - string(4) "2014" - [11]=> - string(12) "Segment:MAIN" - [12]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Get -------------------- -array(14) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "California" - [6]=> - string(4) "City" - [7]=> - string(7) "Utility" - [8]=> - string(7) "Billing" - [9]=> - string(1) "-" - [10]=> - string(8) "November" - [11]=> - string(4) "2014" - [12]=> - string(12) "Segment:MAIN" - [13]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "California" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 7 | Email: drk3@gmail.com | Name: Dren.K -Email stored for: | ID: 12 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 14 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 15 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Get -------------------- -array(14) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "California" - [6]=> - string(4) "City" - [7]=> - string(7) "Utility" - [8]=> - string(7) "Billing" - [9]=> - string(1) "-" - [10]=> - string(8) "November" - [11]=> - string(4) "2014" - [12]=> - string(12) "Segment:MAIN" - [13]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(10) "California" - [1]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(0) { -} -string(11) "we're in..." -Email stored for: | ID: 1 | Email: dk18184@gmail.com | Name: Dren -Email stored for: | ID: 6 | Email: tlac@alexent.com | Name: Tim -Email stored for: | ID: 11 | Email: ta@alexander-co.com | Name: Tim - --------------------- DB -------------------- -array(2) { - [0]=> - string(4) "City" - [1]=> - string(5) "Davis" -} - --------------------- Get -------------------- -array(14) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "California" - [6]=> - string(4) "City" - [7]=> - string(7) "Utility" - [8]=> - string(7) "Billing" - [9]=> - string(1) "-" - [10]=> - string(8) "November" - [11]=> - string(4) "2014" - [12]=> - string(12) "Segment:MAIN" - [13]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(1) { - [0]=> - string(4) "City" -} - --------------------- Diff Array -------------------- -array(1) { - [1]=> - string(5) "Davis" -} - --------------------- DB -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(14) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "California" - [6]=> - string(4) "City" - [7]=> - string(7) "Utility" - [8]=> - string(7) "Billing" - [9]=> - string(1) "-" - [10]=> - string(8) "November" - [11]=> - string(4) "2014" - [12]=> - string(12) "Segment:MAIN" - [13]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(0) { -} - --------------------- Diff Array -------------------- -array(1) { - [0]=> - string(10) "Atascadero" -} - --------------------- DB -------------------- -array(3) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" - [2]=> - string(10) "Atascadero" -} - --------------------- Get -------------------- -array(14) { - [0]=> - string(8) "Assembly" - [1]=> - string(1) "&" - [2]=> - string(7) "Mailing" - [3]=> - string(3) "for" - [4]=> - string(3) "job" - [5]=> - string(10) "California" - [6]=> - string(4) "City" - [7]=> - string(7) "Utility" - [8]=> - string(7) "Billing" - [9]=> - string(1) "-" - [10]=> - string(8) "November" - [11]=> - string(4) "2014" - [12]=> - string(12) "Segment:MAIN" - [13]=> - string(10) "completed." -} - --------------------- Intersect -------------------- -array(2) { - [0]=> - string(8) "Assembly" - [1]=> - string(7) "Mailing" -} - --------------------- Diff Array -------------------- -array(1) { - [2]=> - string(10) "Atascadero" -} - -Emails has been readen. diff --git a/public/scripts/controllers/keyWordsListCtrl.js b/public/scripts/controllers/keyWordsListCtrl.js index 0fb8755..197890c 100644 --- a/public/scripts/controllers/keyWordsListCtrl.js +++ b/public/scripts/controllers/keyWordsListCtrl.js @@ -34,8 +34,8 @@ angular.module('app.keyWordsList') * Simple tooltip. * @type {Object} */ - $scope.tooltip = { - settings: { + $scope.tooltip = { + settings: { auto: { title: 'Once the keywordEnotity is craeted, if this option is selected, emails will be sent automatically by the system.' }, origin: { title: 'If this option slected, the system won\'t atempt to make any changes to the email whatsoever, but instead it keeps the exact same email.' } } @@ -433,10 +433,10 @@ angular.module('app.keyWordsList') email: data.email, full_name: data.full_name, }; - + if(typeof _email_list_id != 'undefined') { data.id = _email_list_id; - } + } if($scope.checkEmail(data, id, _email_list_id)) { @@ -446,7 +446,7 @@ angular.module('app.keyWordsList') saveRecipient(data) .success(function(data){ - // If the email is added and note edited, + // If the email is added and note edited, // only then assign the email_list_id. if(_current_email_item.fresh) { _current_email_item.email_list_id = data.recipent.id; @@ -482,13 +482,13 @@ angular.module('app.keyWordsList') }; $scope.indicateKeywordsExists = function() { - angular.forEach($("#id-keywords-container").children(), function(item) { + angular.forEach($("#id-keywords-container").children(), function(item) { angular.forEach(item.children, function(child) { child.className = "form-control input-danger"; }); }); }; $scope.cleanKeywordsExists = function() { - angular.forEach($("#id-keywords-container").children(), function(item) { + angular.forEach($("#id-keywords-container").children(), function(item) { angular.forEach(item.children, function(child) { child.className = "form-control"; }); }); }; @@ -593,4 +593,4 @@ angular.module('app.keyWordsList') }, 10); } -}]); \ No newline at end of file +}]);