1249 lines
847 KiB
MySQL
1249 lines
847 KiB
MySQL
|
|
-- phpMyAdmin SQL Dump
|
|||
|
|
-- version 2.11.8.1deb1
|
|||
|
|
-- http://www.phpmyadmin.net
|
|||
|
|
--
|
|||
|
|
-- Host: localhost
|
|||
|
|
-- Generation Time: Oct 08, 2009 at 07:35 PM
|
|||
|
|
-- Server version: 5.0.67
|
|||
|
|
-- PHP Version: 5.2.10
|
|||
|
|
|
|||
|
|
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
|
|||
|
|
|
|||
|
|
|
|||
|
|
/*!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: `quotenik`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `acos`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `acos` (
|
|||
|
|
`id` int(10) NOT NULL auto_increment,
|
|||
|
|
`parent_id` int(10) default NULL,
|
|||
|
|
`model` varchar(255) default NULL,
|
|||
|
|
`foreign_key` int(10) default NULL,
|
|||
|
|
`alias` varchar(255) default NULL,
|
|||
|
|
`lft` int(10) default NULL,
|
|||
|
|
`rght` int(10) default NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `acos`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `addresses`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `addresses` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`address` text NOT NULL COMMENT 'street or unit number and street name',
|
|||
|
|
`city` varchar(255) NOT NULL COMMENT 'Suburb / City',
|
|||
|
|
`state_id` int(11) NOT NULL COMMENT 'State foreign Key',
|
|||
|
|
`country_id` int(11) NOT NULL COMMENT 'Country foreign Key',
|
|||
|
|
`customer_id` int(11) NOT NULL COMMENT 'Customer foreign key',
|
|||
|
|
`type` varchar(255) NOT NULL COMMENT 'either bill / ship / both',
|
|||
|
|
`postcode` varchar(50) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `addresses`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `addresses` (`id`, `address`, `city`, `state_id`, `country_id`, `customer_id`, `type`, `postcode`) VALUES
|
|||
|
|
(1, '101 Some St', 'SomeTown', 1, 1, 1, '2', ''),
|
|||
|
|
(2, '101 Some St', 'SomeTown', 2, 1, 2, '2', '2222636'),
|
|||
|
|
(3, 'Some Other Address', 'SomeOtherTown', 7, 1, 1, '0', '2520'),
|
|||
|
|
(4, '101 billing address lane\r\n', 'BillingLand', 1, 1, 3, '0', '15859'),
|
|||
|
|
(5, '', '', 1, 1, 4, '0', ''),
|
|||
|
|
(6, '101 GNB St', 'New York City', 9, 4, 11, '0', '213515'),
|
|||
|
|
(7, '1515912 Another St', 'Small Town', 9, 4, 11, '1', '2159150'),
|
|||
|
|
(8, '101 Mad good Drive', 'Sydney', 1, 1, 12, '1', '2195501'),
|
|||
|
|
(9, '101010110', '01010101', 1, 1, 16, '0', '105105501');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `aros`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `aros` (
|
|||
|
|
`id` int(10) NOT NULL auto_increment,
|
|||
|
|
`parent_id` int(10) default NULL,
|
|||
|
|
`model` varchar(255) default NULL,
|
|||
|
|
`foreign_key` int(10) default NULL,
|
|||
|
|
`alias` varchar(255) default NULL,
|
|||
|
|
`lft` int(10) default NULL,
|
|||
|
|
`rght` int(10) default NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `aros`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `aros` (`id`, `parent_id`, `model`, `foreign_key`, `alias`, `lft`, `rght`) VALUES
|
|||
|
|
(1, NULL, 'Group', 4, NULL, 1, 4),
|
|||
|
|
(2, NULL, 'Group', 5, NULL, 5, 8),
|
|||
|
|
(3, NULL, 'Group', 6, NULL, 9, 14),
|
|||
|
|
(4, 3, 'User', 7, NULL, 10, 11),
|
|||
|
|
(5, 3, 'User', 8, NULL, 12, 13),
|
|||
|
|
(6, 1, 'User', 9, NULL, 2, 3),
|
|||
|
|
(7, 2, 'User', 10, NULL, 6, 7);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `aros_acos`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `aros_acos` (
|
|||
|
|
`id` int(10) NOT NULL auto_increment,
|
|||
|
|
`aro_id` int(10) NOT NULL,
|
|||
|
|
`aco_id` int(10) NOT NULL,
|
|||
|
|
`_create` varchar(2) NOT NULL default '0',
|
|||
|
|
`_read` varchar(2) NOT NULL default '0',
|
|||
|
|
`_update` varchar(2) NOT NULL default '0',
|
|||
|
|
`_delete` varchar(2) NOT NULL default '0',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `ARO_ACO_KEY` (`aro_id`,`aco_id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `aros_acos`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `cake_sessions`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `cake_sessions` (
|
|||
|
|
`id` varchar(255) NOT NULL default '',
|
|||
|
|
`data` text,
|
|||
|
|
`expires` int(11) default NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `cake_sessions`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `cake_sessions` (`id`, `data`, `expires`) VALUES
|
|||
|
|
('lui0vjag9376t2n6932gutvhi1', 'Config|a:3:{s:9:"userAgent";s:32:"66872ae53dadaefd36bd22880f8f8e89";s:4:"time";i:1255022995;s:7:"timeout";i:10;}Message|a:0:{}Auth|a:1:{s:4:"User";a:7:{s:2:"id";s:1:"8";s:8:"username";s:4:"karl";s:10:"first_name";s:4:"Karl";s:9:"last_name";s:6:"Cordes";s:5:"email";s:27:"karl@cmctechnologies.com.au";s:9:"job_title";s:42:"Systems Administrator / Software Developer";s:8:"group_id";s:1:"6";}}', 1255022996);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `contacts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `contacts` (
|
|||
|
|
`customer_id` int(11) NOT NULL,
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`first_name` varchar(255) NOT NULL,
|
|||
|
|
`last_name` varchar(255) NOT NULL,
|
|||
|
|
`email` varchar(255) NOT NULL,
|
|||
|
|
`phone` varchar(255) NOT NULL,
|
|||
|
|
`fax` varchar(255) NOT NULL,
|
|||
|
|
`notes` text NOT NULL,
|
|||
|
|
`mobile` varchar(255) NOT NULL,
|
|||
|
|
`contact_category_id` int(11) NOT NULL,
|
|||
|
|
`direct_phone` varchar(255) NOT NULL,
|
|||
|
|
`phone_extension` varchar(30) NOT NULL,
|
|||
|
|
`job_title` varchar(255) default NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=40 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `contacts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `contacts` (`customer_id`, `id`, `first_name`, `last_name`, `email`, `phone`, `fax`, `notes`, `mobile`, `contact_category_id`, `direct_phone`, `phone_extension`, `job_title`) VALUES
|
|||
|
|
(1, 1, 'Joe', 'Bloggs', 'jbloggs@test.com.au', '02 49159 1 195', '02 19259 1110', 'Something!', '', 2, '', '', ''),
|
|||
|
|
(2, 2, 'Joe', 'Bloggs', 'jbloggs@anothercustomer.com', '02 9419 19419', '02 94191 1491', 'Some Info about the customer', '', 4, '', '', NULL),
|
|||
|
|
(1, 3, 'bob', 'jones', 'bjones@somewhere.com', '', '', '', '', 0, '', '', NULL),
|
|||
|
|
(3, 4, 'TEST-DISREGARD-THIS', 'Fry', 'karl@cmctechnologies.com.au', '', '', '', '', 0, '', '', NULL),
|
|||
|
|
(2, 5, 'SomeGuy', 'SomeRa', '', '', '', '', '', 0, '', '', NULL),
|
|||
|
|
(2, 6, 'Karl', 'Cordes', 'karl@cmctechnologies.com.au', '', '', '', '', 0, '', '', NULL),
|
|||
|
|
(4, 7, 'Guybrush', 'Threepwood', 'guybrush@threepwood.net', '02 235115', '', '', '', 0, '', '', NULL),
|
|||
|
|
(6, 8, 'Lechuck', 'ThePirate', 'lechuck@fortress.evil', '02 91941 1941', '02 915915015', 'Zombie Pirate. Watch out for him!', '041 91515 1591', 0, '', '', NULL),
|
|||
|
|
(8, 9, 'Sam', 'theRabbit', 'sam@isabitcrazy.com', '0125951', '1219501259', 'He''s a deranged Rabbit creature.', '12591059', 0, '', '', NULL),
|
|||
|
|
(9, 10, 'Marshall', 'Ericsson', 'marshall@goliathbank.com.au', '02 498190 10410', '', '', '', 0, '', '', NULL),
|
|||
|
|
(10, 11, 'Robert', 'Oppenheimer', 'become.death@destroyerofworlds.org', '02 491259150', '', 'I am become death, the destroyer of worlds.', '', 0, '', '', NULL),
|
|||
|
|
(10, 12, 'Toranga', 'Leela', 'oneeye@hotmail.com', '', '', 'Heee-yeah! <ninja kick>\r\n', '', 0, '', '', NULL),
|
|||
|
|
(10, 13, 'AnotherContact', 'AnotherLastname', 'a.person@somecompany.com', '', '215195 ', 'Some', '05125 1591205', 0, '', '', NULL),
|
|||
|
|
(10, 14, 'LastOne', 'LastName', 'lastone@somanycontacts.com', '156906190', '', 'Whee!', 'lastone@something.com', 0, '', '', NULL),
|
|||
|
|
(11, 15, 'Barney', 'Stinson', 'barney@gnb.com', '1259210590', '12 59120', 'Legendary Guy', '150590', 0, '', '', NULL),
|
|||
|
|
(11, 16, 'Ted', 'Moseby', 'ted@gnb.com', '1259150', '', 'The Architect', '25191205', 0, '', '', NULL),
|
|||
|
|
(2, 33, 'Guybrush', 'Threepwood', 'karl@cmctechnologies.com.au', '02 9669 4000', '', 'wgghgwefw', '0415 397 713', 4, '', '', NULL),
|
|||
|
|
(12, 31, 'GoodGuy', 'GoodCompany', 'gg@madgoodco.com.au', '12585105', '1295105', '', '1595105', 0, '', '', NULL),
|
|||
|
|
(7, 32, 'SomeOtherTestUser', 'TESTMAN', 'karl@cmctechnologies.com.au', '1591509101', '1259510', '21391205', '130921350', 0, '', '', NULL),
|
|||
|
|
(3, 30, 'Jim the Test Contact', 'Bob', 'karl@cmctechnologies.com.au', '', '1512951950', 'Jim Bob, Savanah Bait and Sushi', '', 0, '', '', NULL),
|
|||
|
|
(3, 29, 'AnotherContact Added Directly from New Enquiry Form', 'Success', 'karl@cmctechnologies.com.au', '125910515', '190519', '1595095', '12509150', 0, '', '', NULL),
|
|||
|
|
(3, 28, 'NewContact from Add Enquiry Form', 'yeah yeah', 'karl@cmctechnologies.com.au', '195105590159205', '125912059', 'This is awesome.', '125091205125', 0, '', '', NULL),
|
|||
|
|
(3, 27, 'AnotherContactInOneStep', 'weqgjwig', 'karl@cmctechnologies.com.au', '250239205905', '589151295', '58159185-15', '23106960', 0, '', '', NULL),
|
|||
|
|
(3, 26, 'AddAContactWithanEnquiry', 'SomeGuy', 'karl@cmctechnologies.com.au', '', '', 'Time Saving is Fun!', '', 0, '', '', NULL),
|
|||
|
|
(3, 25, 'AddAContactWithanEnquiry', 'SomeGuy', 'karl@cmctechnologies.com.au', '', '', 'Time Saving is Fun!', '', 0, '', '', NULL),
|
|||
|
|
(4, 34, 'Eric', 'Raymond', 'void@karlcordes.com', '', '', '', '', 0, '', '', NULL),
|
|||
|
|
(15, 35, 'Eric', 'Foreman', 'void@karlcordes.com', '0245 195015', '', 'Lord of the Basement', '122059210 51', 1, '', '', NULL),
|
|||
|
|
(2, 36, 'Karlos', 'Cordes', 'karl@cmctechnologies.com.au', '5915012150915', '', 'Quickly adding Contacts is FUN!', '1250915015', 1, '', '', NULL),
|
|||
|
|
(16, 37, 'Test', 'Man', 'tman@testcustomer.com.au', '042491512 ', '', '', '05150150', 1, '', '', NULL),
|
|||
|
|
(2, 38, 'Rah', 'Man', 'rahman@anothercust.com.au', '02 9151', '23230590', '', '231050251', 1, '', '359', NULL),
|
|||
|
|
(18, 39, 'Rah', 'Man', 'raman@wgjwig.com', '23105950195', '', 'HAHA!', '101515215', 2, '', '', 'MR ACCOUNT MAN');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `contact_categories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `contact_categories` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `contact_categories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `contact_categories` (`id`, `name`) VALUES
|
|||
|
|
(1, 'Engineering & Maintenance'),
|
|||
|
|
(2, 'Accounts'),
|
|||
|
|
(3, 'Management'),
|
|||
|
|
(4, 'Purchasing / Expediting');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `costings`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `costings` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`created` datetime NOT NULL,
|
|||
|
|
`product_id` int(11) default NULL COMMENT 'Will only be one of quote_product, order, invoice ',
|
|||
|
|
`quote_product_id` int(11) default NULL,
|
|||
|
|
`order_product_id` int(11) default NULL,
|
|||
|
|
`invoice_product_id` int(11) default NULL,
|
|||
|
|
`currency_id` int(11) NOT NULL COMMENT 'Cost Price Currency',
|
|||
|
|
`quantity` decimal(10,2) NOT NULL,
|
|||
|
|
`unit_cost_price` decimal(10,2) default NULL,
|
|||
|
|
`exchange_rate` decimal(10,2) default NULL,
|
|||
|
|
`our_discount_percent` decimal(10,2) default NULL,
|
|||
|
|
`packing` decimal(10,2) NOT NULL,
|
|||
|
|
`shipping_weight` decimal(10,2) NOT NULL,
|
|||
|
|
`shipping_cost` decimal(10,2) NOT NULL,
|
|||
|
|
`duty_percent` decimal(10,2) NOT NULL,
|
|||
|
|
`customs` decimal(10,2) NOT NULL,
|
|||
|
|
`finance_percent` decimal(10,2) NOT NULL,
|
|||
|
|
`misc_costs` decimal(10,2) NOT NULL,
|
|||
|
|
`gross_sell_price` decimal(10,2) NOT NULL,
|
|||
|
|
`sale_discount_percent` decimal(10,2) NOT NULL,
|
|||
|
|
`net_sell_price` decimal(10,2) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `costings`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `countries`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `countries` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
`currency_id` int(11) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `countries`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `countries` (`id`, `name`, `currency_id`) VALUES
|
|||
|
|
(1, 'Australia', 2),
|
|||
|
|
(2, 'United Kingdom', 4),
|
|||
|
|
(3, 'Germany', 1),
|
|||
|
|
(4, 'United States', 3),
|
|||
|
|
(5, 'Switzerland', 1),
|
|||
|
|
(6, 'Japan', 5),
|
|||
|
|
(7, 'Australia', 0);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `currencies`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `currencies` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
`symbol` char(5) NOT NULL COMMENT 'Currency Symbol ($, Euro etc)',
|
|||
|
|
`iso4217` varchar(3) NOT NULL COMMENT 'AUD, USD, etc',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `currencies`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `currencies` (`id`, `name`, `symbol`, `iso4217`) VALUES
|
|||
|
|
(1, 'Euro', '&euro', 'EUR'),
|
|||
|
|
(2, 'Australian Dollar', '$', 'AUD'),
|
|||
|
|
(3, 'US Dollar', '$', 'USD'),
|
|||
|
|
(4, 'Pound Sterling', '£', 'GBP'),
|
|||
|
|
(5, 'Japanese Yen', 'Â¥', 'JPY');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `customers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `customers` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL COMMENT 'Company Name',
|
|||
|
|
`abn` varchar(20) default NULL,
|
|||
|
|
`created` datetime NOT NULL,
|
|||
|
|
`notes` text NOT NULL,
|
|||
|
|
`url` varchar(300) default NULL,
|
|||
|
|
`payment_terms` varchar(255) NOT NULL,
|
|||
|
|
`discount_pricing_policies` text NOT NULL,
|
|||
|
|
`customer_category_id` int(11) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `customers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `customers` (`id`, `name`, `abn`, `created`, `notes`, `url`, `payment_terms`, `discount_pricing_policies`, `customer_category_id`) VALUES
|
|||
|
|
(1, 'TestCompany', '0', '2009-01-17 15:52:52', '', NULL, '100% Payment with Order', '', 1),
|
|||
|
|
(2, 'AnotherCustomer', '2147483647', '2009-01-17 17:04:27', '', NULL, 'Net 7 Days for Approved Accounts', '', 2),
|
|||
|
|
(3, 'BorgCorporation', '0', '2009-01-20 15:21:11', '', NULL, 'Net 30 Days for Approved Accounts', '', 1),
|
|||
|
|
(4, 'I want to be a Pirate Corp', '0', '2009-02-03 16:47:19', '', NULL, 'Net 30 Days for Approved Accounts', '', 2),
|
|||
|
|
(5, 'SomePlainOldCompany', '2147483647', '2009-02-03 17:01:36', '', NULL, '', '', 0),
|
|||
|
|
(6, 'SuperEfficientCompanyAdding', '0', '2009-02-03 17:03:00', '', NULL, '', '', 0),
|
|||
|
|
(7, 'BoringCustomer', '0', '2009-02-03 17:04:41', '', NULL, '100% Payment with Order', '', 0),
|
|||
|
|
(8, 'ExcitingCustomer', '0', '2009-02-03 17:07:09', '', NULL, '', '', 0),
|
|||
|
|
(9, 'YACustomerWOBlankContact', '0', '2009-02-03 17:15:31', '', NULL, '100% Payment with Order', '', 3),
|
|||
|
|
(10, 'SuperBigCompany', '0', '2009-02-04 08:45:49', '', NULL, '100% Payment with Order', '', 3),
|
|||
|
|
(11, 'GoliathNationalBank', '0', '2009-02-04 10:19:16', '', NULL, '', '', 0),
|
|||
|
|
(12, 'Mad Good Company', '2147483647', '2009-02-04 15:20:33', 'Pretty Good Guys', NULL, '100% Payment with Order', '10% off Mid-West DP Gauges', 3),
|
|||
|
|
(13, 'SuperEfficientCompanyAdding55', '0', '2009-02-04 15:36:05', '', NULL, '100% Payment with Order', '', 1),
|
|||
|
|
(14, 'Suspect', '0', '2009-02-12 14:01:42', '191591512', NULL, '100% Payment with Order', '', 2),
|
|||
|
|
(15, 'That 70''s Company', '56629529592', '2009-02-24 15:53:01', '', '', '100% Payment with Order', '', 2),
|
|||
|
|
(16, 'TestCustomer', '2147483647', '2009-04-14 09:42:30', '', NULL, '100% Payment with Order', '', 1),
|
|||
|
|
(17, 'WHOA. ABN VALIDATION ROCKS', '12345678', '2009-07-13 12:56:55', '', NULL, '100% Payment with Order', '', 1),
|
|||
|
|
(18, 'ABN VAL 2', '56572484518', '2009-07-13 13:02:30', '', '', '100% Payment with Order', '', 1),
|
|||
|
|
(19, 'ABN VAL 3', '55666444556', '2009-07-13 13:15:33', '', '', '100% Payment with Order', '', 1),
|
|||
|
|
(20, 'ABN VALTEST 5', '10555343255', '2009-07-13 14:21:15', '', NULL, '100% Payment with Order', '', 1),
|
|||
|
|
(21, 'ABN VALTEST 6', '45556621505', '2009-07-13 14:21:51', '', NULL, '100% Payment with Order', '', 1),
|
|||
|
|
(22, 'Some Customer NewVal', '12555515205', '2009-07-13 14:42:32', '', 'http://www.google.com', '100% Payment with Order', '', 1),
|
|||
|
|
(23, 'Rah', '34133380177', '2009-07-13 14:48:13', '', 'http://www.google.com', '100% Payment with Order', '', 1),
|
|||
|
|
(24, 'SUP G!!!', '50550550555', '2009-07-17 14:57:01', '', '', 'Net 7 Days for Approved Accounts', 'RAAHA', 1);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `customer_categories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `customer_categories` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL COMMENT 'Name of the Category',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `customer_categories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `customer_categories` (`id`, `name`) VALUES
|
|||
|
|
(1, 'Suspect'),
|
|||
|
|
(2, 'Prospect'),
|
|||
|
|
(3, 'Customer - Creditor');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `emails`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `emails` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`to` varchar(500) NOT NULL,
|
|||
|
|
`cc` varchar(500) NOT NULL,
|
|||
|
|
`from` varchar(500) NOT NULL,
|
|||
|
|
`body` text NOT NULL,
|
|||
|
|
`plainbody` text NOT NULL,
|
|||
|
|
`date` varchar(255) NOT NULL,
|
|||
|
|
`created` datetime NOT NULL,
|
|||
|
|
`enquiry_id` int(11) NOT NULL,
|
|||
|
|
`subject` varchar(500) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=42 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `emails`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(1, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<b>BODY </b>OF <i>AN </i>HT<b>ML </b>EMAIL<br>\r\n<br>\r\n<br>\r\nFORMAT ME PROPERLY!<br>\r\n<br>\r\n</body>\r\n</html>\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:00:09', 56, 'CMC7938NE372087-246 TEST AGAIN'),
|
|||
|
|
(2, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<b>BODY </b>OF <i>AN </i>HT<b>ML </b>EMAIL<br>\r\n<br>\r\n<br>\r\nFORMAT ME PROPERLY!<br>\r\n<br>\r\n</body>\r\n</html>\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:01:58', 56, 'CMC7938NE372087-246 TEST AGAIN'),
|
|||
|
|
(3, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n <style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n </style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Thu, 12 Feb 2009 08:34:04 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Sales - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>Vault <a class="moz-txt-link-rfc2396E" href="mailto:vault@cmctechnologies.com.au"><vault@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n<style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n</style>\r\n<div>----- Original Message ----- </div>\r\n<div\r\n style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">\r\n<div\r\n style="background: rgb(228, 228, 228) none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><b>From:</b>\r\n<a moz-do-not-send="true" title="wwilliams@safetysystemsuk.com"\r\n href="mailto:wwilliams@safetysystemsuk.com">Williams, Wendy</a> </div>\r\n<div><b>To:</b> <a moz-do-not-send="true"\r\n title="sales@cmctechnologies.com.au"\r\n href="mailto:sales@cmctechnologies.com.au">sales@cmctechnologies.com.au</a>\r\n</div>\r\n<div><b>Sent:</b> Wednesday, February 11, 2009 9:24 PM</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div class="Section1">\r\n<p class="MsoNormal"><font face="Arial" size="2"><span\r\n style="font-size: 10pt; fo
|
|||
|
|
(4, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<b>BODY </b>OF <i>AN </i>HT<b>ML </b>EMAIL<br>\r\n<br>\r\n<br>\r\nFORMAT ME PROPERLY!<br>\r\n<br>\r\n</body>\r\n</html>\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:18:58', 56, 'CMC7938NE372087-246 TEST AGAIN'),
|
|||
|
|
(5, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n <style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n </style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Thu, 12 Feb 2009 08:34:04 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Sales - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>Vault <a class="moz-txt-link-rfc2396E" href="mailto:vault@cmctechnologies.com.au"><vault@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n<style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n</style>\r\n<div>----- Original Message ----- </div>\r\n<div\r\n style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">\r\n<div\r\n style="background: rgb(228, 228, 228) none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><b>From:</b>\r\n<a moz-do-not-send="true" title="wwilliams@safetysystemsuk.com"\r\n href="mailto:wwilliams@safetysystemsuk.com">Williams, Wendy</a> </div>\r\n<div><b>To:</b> <a moz-do-not-send="true"\r\n title="sales@cmctechnologies.com.au"\r\n href="mailto:sales@cmctechnologies.com.au">sales@cmctechnologies.com.au</a>\r\n</div>\r\n<div><b>Sent:</b> Wednesday, February 11, 2009 9:24 PM</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div class="Section1">\r\n<p class="MsoNormal"><font face="Arial" size="2"><span\r\n style="font-size: 10pt; fo
|
|||
|
|
(6, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<b>BODY </b>OF <i>AN </i>HT<b>ML </b>EMAIL<br>\r\n<br>\r\n<br>\r\nFORMAT ME PROPERLY!<br>\r\n<br>\r\n</body>\r\n</html>\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:33:21', 56, 'CMC7938NE372087-246 TEST AGAIN'),
|
|||
|
|
(7, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n <style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n </style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Thu, 12 Feb 2009 08:34:04 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Sales - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>Vault <a class="moz-txt-link-rfc2396E" href="mailto:vault@cmctechnologies.com.au"><vault@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n<style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n</style>\r\n<div>----- Original Message ----- </div>\r\n<div\r\n style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">\r\n<div\r\n style="background: rgb(228, 228, 228) none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><b>From:</b>\r\n<a moz-do-not-send="true" title="wwilliams@safetysystemsuk.com"\r\n href="mailto:wwilliams@safetysystemsuk.com">Williams, Wendy</a> </div>\r\n<div><b>To:</b> <a moz-do-not-send="true"\r\n title="sales@cmctechnologies.com.au"\r\n href="mailto:sales@cmctechnologies.com.au">sales@cmctechnologies.com.au</a>\r\n</div>\r\n<div><b>Sent:</b> Wednesday, February 11, 2009 9:24 PM</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div class="Section1">\r\n<p class="MsoNormal"><font face="Arial" size="2"><span\r\n style="font-size: 10pt; fo
|
|||
|
|
(8, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<b>BODY </b>OF <i>AN </i>HT<b>ML </b>EMAIL<br>\r\n<br>\r\n<br>\r\nFORMAT ME PROPERLY!<br>\r\n<br>\r\n</body>\r\n</html>\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:34:48', 56, 'CMC7938NE372087-246 TEST AGAIN'),
|
|||
|
|
(9, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n <style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n </style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Thu, 12 Feb 2009 08:34:04 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Sales - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>Vault <a class="moz-txt-link-rfc2396E" href="mailto:vault@cmctechnologies.com.au"><vault@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n<style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n</style>\r\n<div>----- Original Message ----- </div>\r\n<div\r\n style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">\r\n<div\r\n style="background: rgb(228, 228, 228) none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><b>From:</b>\r\n<a moz-do-not-send="true" title="wwilliams@safetysystemsuk.com"\r\n href="mailto:wwilliams@safetysystemsuk.com">Williams, Wendy</a> </div>\r\n<div><b>To:</b> <a moz-do-not-send="true"\r\n title="sales@cmctechnologies.com.au"\r\n href="mailto:sales@cmctechnologies.com.au">sales@cmctechnologies.com.au</a>\r\n</div>\r\n<div><b>Sent:</b> Wednesday, February 11, 2009 9:24 PM</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div class="Section1">\r\n<p class="MsoNormal"><font face="Arial" size="2"><span\r\n style="font-size: 10pt; fo
|
|||
|
|
(10, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC7953VE652225-543 - Order Confirmation from FHP</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Wed, 11 Feb 2009 16:53:34 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Doreena - CMC Technologies\r\n<a class="moz-txt-link-rfc2396E" href="mailto:doreena@cmctechnologies.com.au"><doreena@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>Vault <a class="moz-txt-link-rfc2396E" href="mailto:vault@cmctechnologies.com.au"><vault@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<pre>----- Original Message ----- \r\nFrom: "Jaroslav Tselikmann" <a class="moz-txt-link-rfc2396E" href="mailto:sts@papenmeier.de"><sts@papenmeier.de></a>\r\nTo: "Con Carpis" <a class="moz-txt-link-rfc2396E" href="mailto:carpis@cmctechnologies.com.au"><carpis@cmctechnologies.com.au></a>\r\nCc: "Doreena Kourtesis" <a class="moz-txt-link-rfc2396E" href="mailto:doreena@cmctechnologies.com.au"><doreena@cmctechnologies.com.au></a>\r\nSent: Wednesday, February 11, 2009 2:02 AM\r\nSubject: Order Confirmation Lumiglas\r\n\r\n\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: <a class="moz-txt-link-abbreviated" href="mailto:sts@papenmeier.de">sts@papenmeier.de</a>\r\n> Fax: (+49)-2304-205-206 - Web: <a class="moz-txt-link-freetext" href="http://www.lumiglas.de">http://www.lumiglas.de</a>\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n</pre>\r\n</body>\r\n</html>\r\n\r\n', '\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: <a class="moz-txt-link-abbreviated" href="mailto:sts@papenmeier.de">sts@papenmeier.de</a>\r\n> Fax: (+49)-2304-205-206 - Web: <a class="moz-txt-link-freetext" href="http://www.lumiglas.de">http://www.lumiglas.de</a>\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n</pre>\r\n</body>\r\n</html>\r\n\r\n', 'Thu, 12 Feb 2009 11:34:15 +1100', '2009-02-12 11:34:49', 56, '[Fwd: CMC7938NE372087-246 - Order Confirmation from FHP]'),
|
|||
|
|
(11, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<b>BODY </b>OF <i>AN </i>HT<b>ML </b>EMAIL<br>\r\n<br>\r\n<br>\r\nFORMAT ME PROPERLY!<br>\r\n<br>\r\n</body>\r\n</html>\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:40:53', 56, 'CMC7938NE372087-246 TEST AGAIN'),
|
|||
|
|
(12, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n <style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n </style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Thu, 12 Feb 2009 08:34:04 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Sales - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>Vault <a class="moz-txt-link-rfc2396E" href="mailto:vault@cmctechnologies.com.au"><vault@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n<style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n</style>\r\n<div>----- Original Message ----- </div>\r\n<div\r\n style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">\r\n<div\r\n style="background: rgb(228, 228, 228) none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><b>From:</b>\r\n<a moz-do-not-send="true" title="wwilliams@safetysystemsuk.com"\r\n href="mailto:wwilliams@safetysystemsuk.com">Williams, Wendy</a> </div>\r\n<div><b>To:</b> <a moz-do-not-send="true"\r\n title="sales@cmctechnologies.com.au"\r\n href="mailto:sales@cmctechnologies.com.au">sales@cmctechnologies.com.au</a>\r\n</div>\r\n<div><b>Sent:</b> Wednesday, February 11, 2009 9:24 PM</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div class="Section1">\r\n<p class="MsoNormal"><font face="Arial" size="2"><span\r\n style="font-size: 10pt; f
|
|||
|
|
(13, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC7953VE652225-543 - Order Confirmation from FHP</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Wed, 11 Feb 2009 16:53:34 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Doreena - CMC Technologies\r\n<a class="moz-txt-link-rfc2396E" href="mailto:doreena@cmctechnologies.com.au"><doreena@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>Vault <a class="moz-txt-link-rfc2396E" href="mailto:vault@cmctechnologies.com.au"><vault@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<pre>----- Original Message ----- \r\nFrom: "Jaroslav Tselikmann" <a class="moz-txt-link-rfc2396E" href="mailto:sts@papenmeier.de"><sts@papenmeier.de></a>\r\nTo: "Con Carpis" <a class="moz-txt-link-rfc2396E" href="mailto:carpis@cmctechnologies.com.au"><carpis@cmctechnologies.com.au></a>\r\nCc: "Doreena Kourtesis" <a class="moz-txt-link-rfc2396E" href="mailto:doreena@cmctechnologies.com.au"><doreena@cmctechnologies.com.au></a>\r\nSent: Wednesday, February 11, 2009 2:02 AM\r\nSubject: Order Confirmation Lumiglas\r\n\r\n\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: <a class="moz-txt-link-abbreviated" href="mailto:sts@papenmeier.de">sts@papenmeier.de</a>\r\n> Fax: (+49)-2304-205-206 - Web: <a class="moz-txt-link-freetext" href="http://www.lumiglas.de">http://www.lumiglas.de</a>\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n</pre>\r\n</body>\r\n</html>\r\n\r\n', '\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: <a class="moz-txt-link-abbreviated" href="mailto:sts@papenmeier.de">sts@papenmeier.de</a>\r\n> Fax: (+49)-2304-205-206 - Web: <a class="moz-txt-link-freetext" href="http://www.lumiglas.de">http://www.lumiglas.de</a>\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n</pre>\r\n</body>\r\n</html>\r\n\r\n', 'Thu, 12 Feb 2009 11:34:15 +1100', '2009-02-12 11:40:54', 56, '[Fwd: CMC7938NE372087-246 - Order Confirmation from FHP]'),
|
|||
|
|
(14, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<b>BODY </b>OF <i>AN </i>HT<b>ML </b>EMAIL<br>\r\n<br>\r\n<br>\r\nFORMAT ME PROPERLY!<br>\r\n<br>\r\n</body>\r\n</html>\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:41:32', 56, 'CMC7938NE372087-246 TEST AGAIN'),
|
|||
|
|
(15, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n <style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n </style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Thu, 12 Feb 2009 08:34:04 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Sales - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>Vault <a class="moz-txt-link-rfc2396E" href="mailto:vault@cmctechnologies.com.au"><vault@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n<style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n</style>\r\n<div>----- Original Message ----- </div>\r\n<div\r\n style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">\r\n<div\r\n style="background: rgb(228, 228, 228) none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><b>From:</b>\r\n<a moz-do-not-send="true" title="wwilliams@safetysystemsuk.com"\r\n href="mailto:wwilliams@safetysystemsuk.com">Williams, Wendy</a> </div>\r\n<div><b>To:</b> <a moz-do-not-send="true"\r\n title="sales@cmctechnologies.com.au"\r\n href="mailto:sales@cmctechnologies.com.au">sales@cmctechnologies.com.au</a>\r\n</div>\r\n<div><b>Sent:</b> Wednesday, February 11, 2009 9:24 PM</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div class="Section1">\r\n<p class="MsoNormal"><font face="Arial" size="2"><span\r\n style="font-size: 10pt; f
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(16, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC7953VE652225-543 - Order Confirmation from FHP</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Wed, 11 Feb 2009 16:53:34 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Doreena - CMC Technologies\r\n<a class="moz-txt-link-rfc2396E" href="mailto:doreena@cmctechnologies.com.au"><doreena@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>Vault <a class="moz-txt-link-rfc2396E" href="mailto:vault@cmctechnologies.com.au"><vault@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<pre>----- Original Message ----- \r\nFrom: "Jaroslav Tselikmann" <a class="moz-txt-link-rfc2396E" href="mailto:sts@papenmeier.de"><sts@papenmeier.de></a>\r\nTo: "Con Carpis" <a class="moz-txt-link-rfc2396E" href="mailto:carpis@cmctechnologies.com.au"><carpis@cmctechnologies.com.au></a>\r\nCc: "Doreena Kourtesis" <a class="moz-txt-link-rfc2396E" href="mailto:doreena@cmctechnologies.com.au"><doreena@cmctechnologies.com.au></a>\r\nSent: Wednesday, February 11, 2009 2:02 AM\r\nSubject: Order Confirmation Lumiglas\r\n\r\n\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: <a class="moz-txt-link-abbreviated" href="mailto:sts@papenmeier.de">sts@papenmeier.de</a>\r\n> Fax: (+49)-2304-205-206 - Web: <a class="moz-txt-link-freetext" href="http://www.lumiglas.de">http://www.lumiglas.de</a>\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n</pre>\r\n</body>\r\n</html>\r\n\r\n', '\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: <a class="moz-txt-link-abbreviated" href="mailto:sts@papenmeier.de">sts@papenmeier.de</a>\r\n> Fax: (+49)-2304-205-206 - Web: <a class="moz-txt-link-freetext" href="http://www.lumiglas.de">http://www.lumiglas.de</a>\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n</pre>\r\n</body>\r\n</html>\r\n\r\n', 'Thu, 12 Feb 2009 11:34:15 +1100', '2009-02-12 11:41:33', 56, '[Fwd: CMC7938NE372087-246 - Order Confirmation from FHP]'),
|
|||
|
|
(17, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<b>BODY </b>OF <i>AN </i>HT<b>ML </b>EMAIL<br>\r\n<br>\r\n<br>\r\nFORMAT ME PROPERLY!<br>\r\n<br>\r\n</body>\r\n</html>\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:45:53', 56, 'CMC7938NE372087-246 TEST AGAIN'),
|
|||
|
|
(18, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n <style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n </style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Thu, 12 Feb 2009 08:34:04 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Sales - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>Vault <a class="moz-txt-link-rfc2396E" href="mailto:vault@cmctechnologies.com.au"><vault@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<meta content="MSHTML 6.00.6000.16674" name="GENERATOR">\r\n<style>@page Section1 {size: 8.5in 11.0in; margin: 1.0in 1.25in 1.0in 1.25in; }\r\nP.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nLI.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nDIV.MsoNormal {\r\n FONT-SIZE: 12pt; MARGIN: 0in 0in 0pt; FONT-FAMILY: "Times New Roman"\r\n}\r\nA:link {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlink {\r\n COLOR: blue; TEXT-DECORATION: underline\r\n}\r\nA:visited {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.MsoHyperlinkFollowed {\r\n COLOR: purple; TEXT-DECORATION: underline\r\n}\r\nSPAN.EmailStyle17 {\r\n COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose\r\n}\r\nDIV.Section1 {\r\n page: Section1\r\n}\r\n</style>\r\n<div>----- Original Message ----- </div>\r\n<div\r\n style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">\r\n<div\r\n style="background: rgb(228, 228, 228) none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><b>From:</b>\r\n<a moz-do-not-send="true" title="wwilliams@safetysystemsuk.com"\r\n href="mailto:wwilliams@safetysystemsuk.com">Williams, Wendy</a> </div>\r\n<div><b>To:</b> <a moz-do-not-send="true"\r\n title="sales@cmctechnologies.com.au"\r\n href="mailto:sales@cmctechnologies.com.au">sales@cmctechnologies.com.au</a>\r\n</div>\r\n<div><b>Sent:</b> Wednesday, February 11, 2009 9:24 PM</div>\r\n</div>\r\n<div><br>\r\n</div>\r\n<div class="Section1">\r\n<p class="MsoNormal"><font face="Arial" size="2"><span\r\n style="font-size: 10pt; f
|
|||
|
|
(19, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC7953VE652225-543 - Order Confirmation from FHP</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Wed, 11 Feb 2009 16:53:34 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Doreena - CMC Technologies\r\n<a class="moz-txt-link-rfc2396E" href="mailto:doreena@cmctechnologies.com.au"><doreena@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>Vault <a class="moz-txt-link-rfc2396E" href="mailto:vault@cmctechnologies.com.au"><vault@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<pre>----- Original Message ----- \r\nFrom: "Jaroslav Tselikmann" <a class="moz-txt-link-rfc2396E" href="mailto:sts@papenmeier.de"><sts@papenmeier.de></a>\r\nTo: "Con Carpis" <a class="moz-txt-link-rfc2396E" href="mailto:carpis@cmctechnologies.com.au"><carpis@cmctechnologies.com.au></a>\r\nCc: "Doreena Kourtesis" <a class="moz-txt-link-rfc2396E" href="mailto:doreena@cmctechnologies.com.au"><doreena@cmctechnologies.com.au></a>\r\nSent: Wednesday, February 11, 2009 2:02 AM\r\nSubject: Order Confirmation Lumiglas\r\n\r\n\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: <a class="moz-txt-link-abbreviated" href="mailto:sts@papenmeier.de">sts@papenmeier.de</a>\r\n> Fax: (+49)-2304-205-206 - Web: <a class="moz-txt-link-freetext" href="http://www.lumiglas.de">http://www.lumiglas.de</a>\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n</pre>\r\n</body>\r\n</html>\r\n\r\n', '\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: <a class="moz-txt-link-abbreviated" href="mailto:sts@papenmeier.de">sts@papenmeier.de</a>\r\n> Fax: (+49)-2304-205-206 - Web: <a class="moz-txt-link-freetext" href="http://www.lumiglas.de">http://www.lumiglas.de</a>\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n</pre>\r\n</body>\r\n</html>\r\n\r\n', 'Thu, 12 Feb 2009 11:34:15 +1100', '2009-02-12 11:45:54', 56, '[Fwd: CMC7938NE372087-246 - Order Confirmation from FHP]'),
|
|||
|
|
(20, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">\r\n <meta name="Generator" content="Microsoft Word 12 (filtered medium)">\r\n<!--[if !mso]>\r\n<style>\r\nv\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style>\r\n<![endif]-->\r\n <style>\r\n<!--\r\n /* Font Definitions */\r\n @font-face\r\n {font-family:Calibri;\r\n panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n {font-family:"Rage Italic";\r\n panose-1:3 7 5 2 4 5 7 7 3 4;}\r\n /* Style Definitions */\r\n p.MsoNormal, li.MsoNormal, div.MsoNormal\r\n {margin:0cm;\r\n margin-bottom:.0001pt;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";}\r\na:link, span.MsoHyperlink\r\n {mso-style-priority:99;\r\n color:blue;\r\n text-decoration:underline;}\r\na:visited, span.MsoHyperlinkFollowed\r\n {mso-style-priority:99;\r\n color:purple;\r\n text-decoration:underline;}\r\nspan.EmailStyle17\r\n {mso-style-type:personal-compose;\r\n font-family:"Calibri","sans-serif";\r\n color:windowtext;}\r\n.MsoChpDefault\r\n {mso-style-type:export-only;}\r\n@page Section1\r\n {size:612.0pt 792.0pt;\r\n margin:72.0pt 72.0pt 72.0pt 72.0pt;}\r\ndiv.Section1\r\n {page:Section1;}\r\n-->\r\n </style><!--[if gte mso 9]><xml>\r\n <o:shapedefaults v:ext="edit" spidmax="1026" />\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <o:shapelayout v:ext="edit">\r\n <o:idmap v:ext="edit" data="1" />\r\n </o:shapelayout></xml><![endif]-->\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>CMC8007QE15213-32 RFQ</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Wed, 11 Feb 2009 17:53:01 +1100</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Kenan Fernandes <a class="moz-txt-link-rfc2396E" href="mailto:kenan@cmctechnologies.com.au"><kenan@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>''Dawn Lim'' <a class="moz-txt-link-rfc2396E" href="mailto:dlim@safetysystems.com.sg"><dlim@safetysystems.com.sg></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">\r\n<meta name="Generator" content="Microsoft Word 12 (filtered medium)">\r\n<!--[if !mso]>\r\n<style>\r\nv\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style>\r\n<![endif]-->\r\n<style>\r\n<!--\r\n /* Font Definitions */\r\n @font-face\r\n {font-family:Calibri;\r\n panose-1:2 15 5 2 2 2 4 3 2 4;}\r\n@font-face\r\n {font-family:"Rage Italic";\r\n panose-1:3 7 5 2 4 5 7 7 3 4;}\r\n /* Style Definitions */\r\n p.MsoNormal, li.MsoNormal, div.MsoNormal\r\n {margin:0cm;\r\n margin-bottom:.0001pt;\r\n font-size:11.0pt;\r\n font-family:"Calibri","sans-serif";}\r\na:link, span.MsoHyperlink\r\n {mso-style-priority:99;\r\n color:blue;\r\n text-decoration:underline;}\r\na:visited, span.MsoHyperlinkFollowed\r\n {mso-style-priority:99;\r\n color:purple;\r\n text-decoration:underline;}\r\nspan.EmailStyle17\r\n {mso-style-type:personal-compose;\r\n font-family:"Calibri","sans-serif";\r\n color:windowtext;}\r\n.MsoChpDefault\r\n {mso-style-type:export-only;}\r\n@page Section1\r\n {size:612.0pt 792.0pt;\r\n margin:72.0pt 72.0pt 72.0pt 72.0pt;}\r\ndiv.Section1\r\n {page:Section1;}\r\n-->\r\n</style><!--[if gte mso 9]><xml>\r\n <o:shapedefaults v:ext="edit" spidmax="1026" />\r\n</xml><![endif]--><
|
|||
|
|
(21, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n <style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\n fax : +61 2 9669 4111 <br>\r\n web : <b><u><a href="http://www.cmctechnologies.com.au">http://www.cmctechnologies.com.au</a></u></b></font>\r\n<p><font size="2">Specialising in <font color="#800000">Fire and\r\nExplosion Prevention or Protection, Overpressure Protection</font>, <font\r\n color="#008080">Vision in the Process,</font><br>\r\n<font color="#0000ff">Flow Measurement,</font> <font color="#008000">Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging</font>,\r\n<font color="#808000">On-Line Analysers.</font><br>\r\n</font><font size="-1">***************************************************************************************************</font><br>\r\n<font size="2">The information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised <br>\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.</font><small><br>\r\n*********************************************************************************************<font\r\n face="Times New Roman TUR">**</font></small></p>\r\n</div>\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>[Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Tue, 30 Jun 2009 11:01:57 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Karl - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:karl@cmctechnologies.com.au"><karl@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td><a class="moz-txt-link-abbreviated" href="mailto:vault@cmctechnologies.com.au">vault@cmctechnologies.com.au</a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n<style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style> <br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(22, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n <style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\n fax : +61 2 9669 4111 <br>\r\n web : <b><u><a href="http://www.cmctechnologies.com.au">http://www.cmctechnologies.com.au</a></u></b></font>\r\n<p><font size="2">Specialising in <font color="#800000">Fire and\r\nExplosion Prevention or Protection, Overpressure Protection</font>, <font\r\n color="#008080">Vision in the Process,</font><br>\r\n<font color="#0000ff">Flow Measurement,</font> <font color="#008000">Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging</font>,\r\n<font color="#808000">On-Line Analysers.</font><br>\r\n</font><font size="-1">***************************************************************************************************</font><br>\r\n<font size="2">The information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised <br>\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.</font><small><br>\r\n*********************************************************************************************<font\r\n face="Times New Roman TUR">**</font></small></p>\r\n</div>\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>[Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Tue, 30 Jun 2009 11:01:57 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Karl - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:karl@cmctechnologies.com.au"><karl@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td><a class="moz-txt-link-abbreviated" href="mailto:vault@cmctechnologies.com.au">vault@cmctechnologies.com.au</a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n<style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style> <br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\
|
|||
|
|
(23, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n <style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\n fax : +61 2 9669 4111 <br>\r\n web : <b><u><a href="http://www.cmctechnologies.com.au">http://www.cmctechnologies.com.au</a></u></b></font>\r\n<p><font size="2">Specialising in <font color="#800000">Fire and\r\nExplosion Prevention or Protection, Overpressure Protection</font>, <font\r\n color="#008080">Vision in the Process,</font><br>\r\n<font color="#0000ff">Flow Measurement,</font> <font color="#008000">Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging</font>,\r\n<font color="#808000">On-Line Analysers.</font><br>\r\n</font><font size="-1">***************************************************************************************************</font><br>\r\n<font size="2">The information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised <br>\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.</font><small><br>\r\n*********************************************************************************************<font\r\n face="Times New Roman TUR">**</font></small></p>\r\n</div>\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>[Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Tue, 30 Jun 2009 11:01:57 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Karl - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:karl@cmctechnologies.com.au"><karl@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td><a class="moz-txt-link-abbreviated" href="mailto:vault@cmctechnologies.com.au">vault@cmctechnologies.com.au</a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n<style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style> <br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(24, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n <style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\n fax : +61 2 9669 4111 <br>\r\n web : <b><u><a href="http://www.cmctechnologies.com.au">http://www.cmctechnologies.com.au</a></u></b></font>\r\n<p><font size="2">Specialising in <font color="#800000">Fire and\r\nExplosion Prevention or Protection, Overpressure Protection</font>, <font\r\n color="#008080">Vision in the Process,</font><br>\r\n<font color="#0000ff">Flow Measurement,</font> <font color="#008000">Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging</font>,\r\n<font color="#808000">On-Line Analysers.</font><br>\r\n</font><font size="-1">***************************************************************************************************</font><br>\r\n<font size="2">The information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised <br>\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.</font><small><br>\r\n*********************************************************************************************<font\r\n face="Times New Roman TUR">**</font></small></p>\r\n</div>\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>[Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Tue, 30 Jun 2009 11:01:57 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Karl - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:karl@cmctechnologies.com.au"><karl@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td><a class="moz-txt-link-abbreviated" href="mailto:vault@cmctechnologies.com.au">vault@cmctechnologies.com.au</a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n<style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style> <br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\
|
|||
|
|
(25, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n <style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\n fax : +61 2 9669 4111 <br>\r\n web : <b><u><a href="http://www.cmctechnologies.com.au">http://www.cmctechnologies.com.au</a></u></b></font>\r\n<p><font size="2">Specialising in <font color="#800000">Fire and\r\nExplosion Prevention or Protection, Overpressure Protection</font>, <font\r\n color="#008080">Vision in the Process,</font><br>\r\n<font color="#0000ff">Flow Measurement,</font> <font color="#008000">Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging</font>,\r\n<font color="#808000">On-Line Analysers.</font><br>\r\n</font><font size="-1">***************************************************************************************************</font><br>\r\n<font size="2">The information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised <br>\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.</font><small><br>\r\n*********************************************************************************************<font\r\n face="Times New Roman TUR">**</font></small></p>\r\n</div>\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>[Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Tue, 30 Jun 2009 11:01:57 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Karl - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:karl@cmctechnologies.com.au"><karl@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td><a class="moz-txt-link-abbreviated" href="mailto:vault@cmctechnologies.com.au">vault@cmctechnologies.com.au</a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n<style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style> <br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(26, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n <style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\n fax : +61 2 9669 4111 <br>\r\n web : <b><u><a href="http://www.cmctechnologies.com.au">http://www.cmctechnologies.com.au</a></u></b></font>\r\n<p><font size="2">Specialising in <font color="#800000">Fire and\r\nExplosion Prevention or Protection, Overpressure Protection</font>, <font\r\n color="#008080">Vision in the Process,</font><br>\r\n<font color="#0000ff">Flow Measurement,</font> <font color="#008000">Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging</font>,\r\n<font color="#808000">On-Line Analysers.</font><br>\r\n</font><font size="-1">***************************************************************************************************</font><br>\r\n<font size="2">The information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised <br>\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.</font><small><br>\r\n*********************************************************************************************<font\r\n face="Times New Roman TUR">**</font></small></p>\r\n</div>\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>[Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Tue, 30 Jun 2009 11:01:57 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Karl - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:karl@cmctechnologies.com.au"><karl@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td><a class="moz-txt-link-abbreviated" href="mailto:vault@cmctechnologies.com.au">vault@cmctechnologies.com.au</a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n<style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style> <br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\
|
|||
|
|
(27, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n <style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\n fax : +61 2 9669 4111 <br>\r\n web : <b><u><a href="http://www.cmctechnologies.com.au">http://www.cmctechnologies.com.au</a></u></b></font>\r\n<p><font size="2">Specialising in <font color="#800000">Fire and\r\nExplosion Prevention or Protection, Overpressure Protection</font>, <font\r\n color="#008080">Vision in the Process,</font><br>\r\n<font color="#0000ff">Flow Measurement,</font> <font color="#008000">Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging</font>,\r\n<font color="#808000">On-Line Analysers.</font><br>\r\n</font><font size="-1">***************************************************************************************************</font><br>\r\n<font size="2">The information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised <br>\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.</font><small><br>\r\n*********************************************************************************************<font\r\n face="Times New Roman TUR">**</font></small></p>\r\n</div>\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>[Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Tue, 30 Jun 2009 11:01:57 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Karl - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:karl@cmctechnologies.com.au"><karl@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td><a class="moz-txt-link-abbreviated" href="mailto:vault@cmctechnologies.com.au">vault@cmctechnologies.com.au</a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n<style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style> <br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(28, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n <style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\n fax : +61 2 9669 4111 <br>\r\n web : <b><u><a href="http://www.cmctechnologies.com.au">http://www.cmctechnologies.com.au</a></u></b></font>\r\n<p><font size="2">Specialising in <font color="#800000">Fire and\r\nExplosion Prevention or Protection, Overpressure Protection</font>, <font\r\n color="#008080">Vision in the Process,</font><br>\r\n<font color="#0000ff">Flow Measurement,</font> <font color="#008000">Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging</font>,\r\n<font color="#808000">On-Line Analysers.</font><br>\r\n</font><font size="-1">***************************************************************************************************</font><br>\r\n<font size="2">The information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised <br>\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.</font><small><br>\r\n*********************************************************************************************<font\r\n face="Times New Roman TUR">**</font></small></p>\r\n</div>\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>[Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Tue, 30 Jun 2009 11:01:57 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Karl - CMC Technologies <a class="moz-txt-link-rfc2396E" href="mailto:karl@cmctechnologies.com.au"><karl@cmctechnologies.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td><a class="moz-txt-link-abbreviated" href="mailto:vault@cmctechnologies.com.au">vault@cmctechnologies.com.au</a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html;charset=us-ascii">\r\n<style>BODY{font:10pt Tahoma, Verdana, sans-serif;}</style> <br>\r\n<div class="moz-signature">\r\n<title></title>\r\n<font size="-1">******************************************************************************************************************************************</font><br>\r\n<font size="2"><font color="#000099"> <b>CMC Technologies Pty\r\nLimited</b> </font>- <font size="1">ACN: 085 991 224 , ABN: 47 085\r\n991 224</font> <br>\r\n Engineering & Industrial Instrumentation <br>\r\n Unit 19, 77 Bourke Road <br>\r\n Alexandria, NSW, 2015 <br>\r\n AUSTRALIA <br>\r\n phone: +61 2 9669 4000 <br>\r\
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(29, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n <style>img {border-width:0px;} </style>\r\n <title>FEN - Australia''s premier manufacturing news website</title>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>My FEN - Photochemical milling from Mastercut Technologies</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>1 Jul 2009 10:51:38 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>My FEN <a class="moz-txt-link-rfc2396E" href="mailto:donotreply@myfen.com.au"><donotreply@myfen.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>NULL <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n<style>img {border-width:0px;} </style>\r\n<title>FEN - Australia''s premier manufacturing news website</title>\r\n<table align="center" bgcolor="#f2f2f2" border="0" cellpadding="0"\r\n cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td width="15"> Â </td>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td bgcolor="#ffffff" valign="top" width="203">\r\n <a moz-do-not-send="true"\r\n href="http://www.myfen.com.au"><img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/pic_01.jpg"\r\n border="0" height="101" width="203"></a></td>\r\n <td bgcolor="#ffffff" valign="top" width="521">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="521">\r\n <tbody>\r\n <tr valign="top">\r\n <td width="1">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="1">\r\n <tbody>\r\n <tr>\r\n <td> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#d1d1d1" height="87"\r\n width="1"> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="87" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td height="7" width="1"> <img\r\n moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(30, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n <style>img {border-width:0px;} </style>\r\n <title>FEN - Australia''s premier manufacturing news website</title>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>My FEN - Photochemical milling from Mastercut Technologies</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>1 Jul 2009 10:51:38 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>My FEN <a class="moz-txt-link-rfc2396E" href="mailto:donotreply@myfen.com.au"><donotreply@myfen.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>NULL <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n<style>img {border-width:0px;} </style>\r\n<title>FEN - Australia''s premier manufacturing news website</title>\r\n<table align="center" bgcolor="#f2f2f2" border="0" cellpadding="0"\r\n cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td width="15"> Â </td>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td bgcolor="#ffffff" valign="top" width="203">\r\n <a moz-do-not-send="true"\r\n href="http://www.myfen.com.au"><img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/pic_01.jpg"\r\n border="0" height="101" width="203"></a></td>\r\n <td bgcolor="#ffffff" valign="top" width="521">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="521">\r\n <tbody>\r\n <tr valign="top">\r\n <td width="1">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="1">\r\n <tbody>\r\n <tr>\r\n <td> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#d1d1d1" height="87"\r\n width="1"> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="87" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td height="7" width="1"> <img\r\n moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(31, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n <style>img {border-width:0px;} </style>\r\n <title>FEN - Australia''s premier manufacturing news website</title>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>My FEN - Photochemical milling from Mastercut Technologies</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>1 Jul 2009 10:51:38 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>My FEN <a class="moz-txt-link-rfc2396E" href="mailto:donotreply@myfen.com.au"><donotreply@myfen.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>NULL <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n<style>img {border-width:0px;} </style>\r\n<title>FEN - Australia''s premier manufacturing news website</title>\r\n<table align="center" bgcolor="#f2f2f2" border="0" cellpadding="0"\r\n cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td width="15"> Â </td>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td bgcolor="#ffffff" valign="top" width="203">\r\n <a moz-do-not-send="true"\r\n href="http://www.myfen.com.au"><img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/pic_01.jpg"\r\n border="0" height="101" width="203"></a></td>\r\n <td bgcolor="#ffffff" valign="top" width="521">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="521">\r\n <tbody>\r\n <tr valign="top">\r\n <td width="1">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="1">\r\n <tbody>\r\n <tr>\r\n <td> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#d1d1d1" height="87"\r\n width="1"> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="87" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td height="7" width="1"> <img\r\n moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(32, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n <style>img {border-width:0px;} </style>\r\n <title>FEN - Australia''s premier manufacturing news website</title>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>My FEN - Photochemical milling from Mastercut Technologies</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>1 Jul 2009 10:51:38 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>My FEN <a class="moz-txt-link-rfc2396E" href="mailto:donotreply@myfen.com.au"><donotreply@myfen.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>NULL <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n<style>img {border-width:0px;} </style>\r\n<title>FEN - Australia''s premier manufacturing news website</title>\r\n<table align="center" bgcolor="#f2f2f2" border="0" cellpadding="0"\r\n cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td width="15"> Â </td>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td bgcolor="#ffffff" valign="top" width="203">\r\n <a moz-do-not-send="true"\r\n href="http://www.myfen.com.au"><img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/pic_01.jpg"\r\n border="0" height="101" width="203"></a></td>\r\n <td bgcolor="#ffffff" valign="top" width="521">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="521">\r\n <tbody>\r\n <tr valign="top">\r\n <td width="1">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="1">\r\n <tbody>\r\n <tr>\r\n <td> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#d1d1d1" height="87"\r\n width="1"> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="87" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td height="7" width="1"> <img\r\n moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(33, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n <style>img {border-width:0px;} </style>\r\n <title>FEN - Australia''s premier manufacturing news website</title>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>My FEN - Photochemical milling from Mastercut Technologies</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>1 Jul 2009 10:51:38 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>My FEN <a class="moz-txt-link-rfc2396E" href="mailto:donotreply@myfen.com.au"><donotreply@myfen.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>NULL <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n<style>img {border-width:0px;} </style>\r\n<title>FEN - Australia''s premier manufacturing news website</title>\r\n<table align="center" bgcolor="#f2f2f2" border="0" cellpadding="0"\r\n cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td width="15"> Â </td>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td bgcolor="#ffffff" valign="top" width="203">\r\n <a moz-do-not-send="true"\r\n href="http://www.myfen.com.au"><img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/pic_01.jpg"\r\n border="0" height="101" width="203"></a></td>\r\n <td bgcolor="#ffffff" valign="top" width="521">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="521">\r\n <tbody>\r\n <tr valign="top">\r\n <td width="1">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="1">\r\n <tbody>\r\n <tr>\r\n <td> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#d1d1d1" height="87"\r\n width="1"> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="87" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td height="7" width="1"> <img\r\n moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(34, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n <style>img {border-width:0px;} </style>\r\n <title>FEN - Australia''s premier manufacturing news website</title>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>My FEN - Photochemical milling from Mastercut Technologies</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>1 Jul 2009 10:51:38 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>My FEN <a class="moz-txt-link-rfc2396E" href="mailto:donotreply@myfen.com.au"><donotreply@myfen.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>NULL <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n<style>img {border-width:0px;} </style>\r\n<title>FEN - Australia''s premier manufacturing news website</title>\r\n<table align="center" bgcolor="#f2f2f2" border="0" cellpadding="0"\r\n cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td width="15"> Â </td>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td bgcolor="#ffffff" valign="top" width="203">\r\n <a moz-do-not-send="true"\r\n href="http://www.myfen.com.au"><img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/pic_01.jpg"\r\n border="0" height="101" width="203"></a></td>\r\n <td bgcolor="#ffffff" valign="top" width="521">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="521">\r\n <tbody>\r\n <tr valign="top">\r\n <td width="1">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="1">\r\n <tbody>\r\n <tr>\r\n <td> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#d1d1d1" height="87"\r\n width="1"> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="87" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td height="7" width="1"> <img\r\n moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(35, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n <style>img {border-width:0px;} </style>\r\n <title>FEN - Australia''s premier manufacturing news website</title>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>My FEN - Photochemical milling from Mastercut Technologies</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>1 Jul 2009 10:51:38 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>My FEN <a class="moz-txt-link-rfc2396E" href="mailto:donotreply@myfen.com.au"><donotreply@myfen.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>NULL <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n<style>img {border-width:0px;} </style>\r\n<title>FEN - Australia''s premier manufacturing news website</title>\r\n<table align="center" bgcolor="#f2f2f2" border="0" cellpadding="0"\r\n cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td width="15"> Â </td>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td bgcolor="#ffffff" valign="top" width="203">\r\n <a moz-do-not-send="true"\r\n href="http://www.myfen.com.au"><img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/pic_01.jpg"\r\n border="0" height="101" width="203"></a></td>\r\n <td bgcolor="#ffffff" valign="top" width="521">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="521">\r\n <tbody>\r\n <tr valign="top">\r\n <td width="1">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="1">\r\n <tbody>\r\n <tr>\r\n <td> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#d1d1d1" height="87"\r\n width="1"> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="87" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td height="7" width="1"> <img\r\n moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(36, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n <style>img {border-width:0px;} </style>\r\n <title>FEN - Australia''s premier manufacturing news website</title>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>My FEN - Photochemical milling from Mastercut Technologies</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>1 Jul 2009 10:51:38 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>My FEN <a class="moz-txt-link-rfc2396E" href="mailto:donotreply@myfen.com.au"><donotreply@myfen.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>NULL <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n<style>img {border-width:0px;} </style>\r\n<title>FEN - Australia''s premier manufacturing news website</title>\r\n<table align="center" bgcolor="#f2f2f2" border="0" cellpadding="0"\r\n cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td width="15"> Â </td>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td bgcolor="#ffffff" valign="top" width="203">\r\n <a moz-do-not-send="true"\r\n href="http://www.myfen.com.au"><img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/pic_01.jpg"\r\n border="0" height="101" width="203"></a></td>\r\n <td bgcolor="#ffffff" valign="top" width="521">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="521">\r\n <tbody>\r\n <tr valign="top">\r\n <td width="1">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="1">\r\n <tbody>\r\n <tr>\r\n <td> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#d1d1d1" height="87"\r\n width="1"> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="87" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td height="7" width="1"> <img\r\n moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(37, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n <style>img {border-width:0px;} </style>\r\n <title>FEN - Australia''s premier manufacturing news website</title>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>My FEN - Photochemical milling from Mastercut Technologies</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>1 Jul 2009 10:51:38 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>My FEN <a class="moz-txt-link-rfc2396E" href="mailto:donotreply@myfen.com.au"><donotreply@myfen.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>NULL <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n<style>img {border-width:0px;} </style>\r\n<title>FEN - Australia''s premier manufacturing news website</title>\r\n<table align="center" bgcolor="#f2f2f2" border="0" cellpadding="0"\r\n cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td width="15"> Â </td>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td bgcolor="#ffffff" valign="top" width="203">\r\n <a moz-do-not-send="true"\r\n href="http://www.myfen.com.au"><img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/pic_01.jpg"\r\n border="0" height="101" width="203"></a></td>\r\n <td bgcolor="#ffffff" valign="top" width="521">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="521">\r\n <tbody>\r\n <tr valign="top">\r\n <td width="1">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="1">\r\n <tbody>\r\n <tr>\r\n <td> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#d1d1d1" height="87"\r\n width="1"> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="87" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td height="7" width="1"> <img\r\n moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(38, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n <style>img {border-width:0px;} </style>\r\n <title>FEN - Australia''s premier manufacturing news website</title>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>My FEN - Photochemical milling from Mastercut Technologies</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>1 Jul 2009 10:51:38 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>My FEN <a class="moz-txt-link-rfc2396E" href="mailto:donotreply@myfen.com.au"><donotreply@myfen.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>NULL <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n<style>img {border-width:0px;} </style>\r\n<title>FEN - Australia''s premier manufacturing news website</title>\r\n<table align="center" bgcolor="#f2f2f2" border="0" cellpadding="0"\r\n cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td width="15"> Â </td>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td bgcolor="#ffffff" valign="top" width="203">\r\n <a moz-do-not-send="true"\r\n href="http://www.myfen.com.au"><img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/pic_01.jpg"\r\n border="0" height="101" width="203"></a></td>\r\n <td bgcolor="#ffffff" valign="top" width="521">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="521">\r\n <tbody>\r\n <tr valign="top">\r\n <td width="1">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="1">\r\n <tbody>\r\n <tr>\r\n <td> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#d1d1d1" height="87"\r\n width="1"> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="87" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td height="7" width="1"> <img\r\n moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(39, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>Dick Smith - Red Hot Deals from the Techxperts</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Wed, 01 Jul 2009 12:44:09 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Dick Smith <a class="moz-txt-link-rfc2396E" href="mailto:feedback@dse.com.au"><feedback@dse.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td><a class="moz-txt-link-rfc2396E" href="mailto:mcarpis@cmctechnologies.com.au"><mcarpis@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<!--\r\n Please view this email online by visiting the following address: \r\n http://email.dse.com.au/em/mail/view.php?id=1336816583&k=6f63599\r\n-->\r\n<table align="center" border="0" cellpadding="0" cellspacing="0"\r\n width="548">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table bgcolor="#ffffff" border="0" cellpadding="0"\r\n cellspacing="0" width="100%">\r\n <tbody>\r\n <tr>\r\n <td valign="top">\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="100%">\r\n <tbody>\r\n <tr>\r\n <td align="left">\r\n <table align="center" border="0" cellpadding="0"\r\n cellspacing="0" width="550">\r\n <tbody>\r\n <tr>\r\n <td style="padding-bottom: 10px;" align="center"\r\n valign="top" width="550"><font color="#999999"\r\n face="Verdana, Arial, Helvetica, sans-serif" size="1">If you cannot\r\nview the email below, <a moz-do-not-send="true"\r\n title="View Email Online link"\r\n href="http://email.dse.com.au/ch/1p0bzmn/399533/8cebfjrbd.html"\r\n target="_blank"><font color="#999999"><font color="#999999"><font\r\n color="#999999"><font color="#999999">please view online</font></font></font></font></a></font></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="550">\r\n <tbody>\r\n <tr>\r\n <td><a moz-do-not-send="true"\r\n title="Dick Smith Logo Link"\r\n href="http://email.dse.com.au/ch/1p0bzmn/776347/8cebfcrd.html"\r\n target="_blank"><img moz-do-not-send="true" alt=""\r\n src="http://email.dse.com.au/download/files/17173/620636/b2c_banner_logo_new.jpg"\r\n border="0" height="58" hspace="0" width="440"></a></td>\r\n <td><a moz-do-not-send="true"\r\n title="Store Locator"\r\n href="http://email.dse.com.au/ch/1p0bzmn/776348/8cebf89cz.html"\r\n target="_blank"><img moz-do-not-send="true" alt="Store Locator"\r\n src="http://www.vision6.com.au/download/files/17173/620635/b2c_banner_store_locator_new.jpg"\r\n border="0" height="58" hspace="0" width="110"></a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#181818"><img\r\n moz-do-not-send="true" alt=""\r\n src="http://email.dse.com.au/download/files/17173/804933/b2c_banner_graphic02_new.jpg"\r\n border="0" height="4" hspace="0" vspace="0" width="548"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#181818">\r\n <table border="0" cellp
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(40, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n <meta http-equiv="Content-Type"\r\n content="text/html; charset=iso-8859-1">\r\n <link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n <style>img {border-width:0px;} </style>\r\n <title>FEN - Australia''s premier manufacturing news website</title>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>My FEN - Photochemical milling from Mastercut Technologies</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>1 Jul 2009 10:51:38 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>My FEN <a class="moz-txt-link-rfc2396E" href="mailto:donotreply@myfen.com.au"><donotreply@myfen.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td>NULL <a class="moz-txt-link-rfc2396E" href="mailto:sales@cmctechnologies.com.au"><sales@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r\n<link href="http://www.myfen.com.au/includes/MandEV/fen/css/style.css"\r\n type="text/css" rel="stylesheet">\r\n<style>img {border-width:0px;} </style>\r\n<title>FEN - Australia''s premier manufacturing news website</title>\r\n<table align="center" bgcolor="#f2f2f2" border="0" cellpadding="0"\r\n cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0" width="747">\r\n <tbody>\r\n <tr>\r\n <td width="15"> Â </td>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="724">\r\n <tbody>\r\n <tr>\r\n <td bgcolor="#ffffff" valign="top" width="203">\r\n <a moz-do-not-send="true"\r\n href="http://www.myfen.com.au"><img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/pic_01.jpg"\r\n border="0" height="101" width="203"></a></td>\r\n <td bgcolor="#ffffff" valign="top" width="521">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="521">\r\n <tbody>\r\n <tr valign="top">\r\n <td width="1">\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="1">\r\n <tbody>\r\n <tr>\r\n <td> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#d1d1d1" height="87"\r\n width="1"> <img moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="87" width="1"></td>\r\n </tr>\r\n <tr>\r\n <td height="7" width="1"> <img\r\n moz-do-not-send="true"\r\n src="http://www.myfen.com.au/images/newsletter/fen/spacer.gif"\r\n height="7" width="1"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r
|
|||
|
|
INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES
|
|||
|
|
(41, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\r\n<html>\r\n<head>\r\n</head>\r\n<body bgcolor="#ffffff" text="#000000">\r\n<br>\r\n<br>\r\n-------- Original Message --------\r\n<table class="moz-email-headers-table" border="0" cellpadding="0"\r\n cellspacing="0">\r\n <tbody>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Subject: </th>\r\n <td>Dick Smith - Red Hot Deals from the Techxperts</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">Date: </th>\r\n <td>Wed, 01 Jul 2009 12:44:09 +1000</td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">From: </th>\r\n <td>Dick Smith <a class="moz-txt-link-rfc2396E" href="mailto:feedback@dse.com.au"><feedback@dse.com.au></a></td>\r\n </tr>\r\n <tr>\r\n <th align="right" nowrap="nowrap" valign="baseline">To: </th>\r\n <td><a class="moz-txt-link-rfc2396E" href="mailto:mcarpis@cmctechnologies.com.au"><mcarpis@cmctechnologies.com.au></a></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<!--\r\n Please view this email online by visiting the following address: \r\n http://email.dse.com.au/em/mail/view.php?id=1336816583&k=6f63599\r\n-->\r\n<table align="center" border="0" cellpadding="0" cellspacing="0"\r\n width="548">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table bgcolor="#ffffff" border="0" cellpadding="0"\r\n cellspacing="0" width="100%">\r\n <tbody>\r\n <tr>\r\n <td valign="top">\r\n <table border="0" cellpadding="0" cellspacing="0"\r\n width="100%">\r\n <tbody>\r\n <tr>\r\n <td align="left">\r\n <table align="center" border="0" cellpadding="0"\r\n cellspacing="0" width="550">\r\n <tbody>\r\n <tr>\r\n <td style="padding-bottom: 10px;" align="center"\r\n valign="top" width="550"><font color="#999999"\r\n face="Verdana, Arial, Helvetica, sans-serif" size="1">If you cannot\r\nview the email below, <a moz-do-not-send="true"\r\n title="View Email Online link"\r\n href="http://email.dse.com.au/ch/1p0bzmn/399533/8cebfjrbd.html"\r\n target="_blank"><font color="#999999"><font color="#999999"><font\r\n color="#999999"><font color="#999999">please view online</font></font></font></font></a></font></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table border="0" cellpadding="0"\r\n cellspacing="0" width="550">\r\n <tbody>\r\n <tr>\r\n <td><a moz-do-not-send="true"\r\n title="Dick Smith Logo Link"\r\n href="http://email.dse.com.au/ch/1p0bzmn/776347/8cebfcrd.html"\r\n target="_blank"><img moz-do-not-send="true" alt=""\r\n src="http://email.dse.com.au/download/files/17173/620636/b2c_banner_logo_new.jpg"\r\n border="0" height="58" hspace="0" width="440"></a></td>\r\n <td><a moz-do-not-send="true"\r\n title="Store Locator"\r\n href="http://email.dse.com.au/ch/1p0bzmn/776348/8cebf89cz.html"\r\n target="_blank"><img moz-do-not-send="true" alt="Store Locator"\r\n src="http://www.vision6.com.au/download/files/17173/620635/b2c_banner_store_locator_new.jpg"\r\n border="0" height="58" hspace="0" width="110"></a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#181818"><img\r\n moz-do-not-send="true" alt=""\r\n src="http://email.dse.com.au/download/files/17173/804933/b2c_banner_graphic02_new.jpg"\r\n border="0" height="4" hspace="0" vspace="0" width="548"></td>\r\n </tr>\r\n <tr>\r\n <td bgcolor="#181818">\r\n <table border="0" cellp
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `email_attachments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `email_attachments` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
`type` varchar(255) NOT NULL,
|
|||
|
|
`size` int(11) NOT NULL,
|
|||
|
|
`data` longblob NOT NULL,
|
|||
|
|
`created` datetime NOT NULL,
|
|||
|
|
`email_id` int(11) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `email_attachments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `enquiries`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `enquiries` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`created` datetime NOT NULL,
|
|||
|
|
`title` varchar(255) NOT NULL COMMENT 'enquirynumber',
|
|||
|
|
`user_id` int(11) NOT NULL,
|
|||
|
|
`customer_id` int(11) NOT NULL,
|
|||
|
|
`contact_id` int(11) NOT NULL,
|
|||
|
|
`state_id` int(11) NOT NULL,
|
|||
|
|
`country_id` int(11) NOT NULL,
|
|||
|
|
`principle_id` int(11) NOT NULL,
|
|||
|
|
`status_id` int(11) NOT NULL,
|
|||
|
|
`comments` text NOT NULL,
|
|||
|
|
`principle_code` int(3) NOT NULL COMMENT 'Numeric Principle Code',
|
|||
|
|
`gst` tinyint(1) NOT NULL COMMENT 'GST applicable on this enquiry',
|
|||
|
|
`billing_address_id` int(11) default NULL,
|
|||
|
|
`shipping_address_id` int(11) default NULL,
|
|||
|
|
`posted` tinyint(1) NOT NULL COMMENT 'has the enquired been posted',
|
|||
|
|
`send_enquiry_email` tinyint(1) NOT NULL default '1' COMMENT 'Check box to disable sending an Enquiry Confirmation Email',
|
|||
|
|
`hidden` tinyint(1) default NULL COMMENT 'Is this enquiry hidden (added twice or incorrectly. Mark it such and hide it from Index)',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=78 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `enquiries`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `enquiries` (`id`, `created`, `title`, `user_id`, `customer_id`, `contact_id`, `state_id`, `country_id`, `principle_id`, `status_id`, `comments`, `principle_code`, `gst`, `billing_address_id`, `shipping_address_id`, `posted`, `send_enquiry_email`, `hidden`) VALUES
|
|||
|
|
(1, '2009-01-17 17:35:39', 'CMC7204NE652190-1', 8, 1, 1, 1, 1, 1, 3, '', 65, 1, 1, 3, 1, 1, 0),
|
|||
|
|
(2, '2009-01-20 16:13:14', 'CMC7884NE372041-205', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, 0, 0, 0, 1, 0),
|
|||
|
|
(3, '2009-01-20 16:24:26', 'CMC7885NE372042-206', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, 0, 0, 0, 1, 0),
|
|||
|
|
(4, '2009-01-20 16:24:54', 'CMC7886NE372043-207', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, 0, 0, 0, 1, 0),
|
|||
|
|
(5, '2009-01-20 16:25:20', 'CMC7887NE372044-208', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, 0, 0, 0, 1, 0),
|
|||
|
|
(6, '2009-01-20 16:28:58', 'CMC7888NE352068-550', 8, 3, 4, 1, 1, 4, 1, '', 35, 1, 0, 0, 0, 1, 0),
|
|||
|
|
(7, '2009-01-20 16:31:11', 'CMC7889NE352069-551', 8, 3, 4, 1, 1, 4, 1, '', 35, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(8, '2009-01-20 16:34:26', 'CMC7890NE95182-35', 8, 3, 4, 1, 1, 3, 1, '', 95, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(9, '2009-01-20 16:39:26', 'CMC7891NE372045-209', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(10, '2009-01-20 16:46:21', 'CMC7892NE372046-210', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(11, '2009-01-20 16:54:02', 'CMC7893NE372047-211', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(12, '2009-01-20 16:55:04', 'CMC7894NE372048-212', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(13, '2009-01-20 16:59:58', 'CMC7895NE372049-213', 7, 3, 4, 1, 1, 5, 6, '', 37, 1, NULL, NULL, 1, 1, 0),
|
|||
|
|
(14, '2009-01-20 17:07:12', 'CMC7896NE372050-214', 10, 3, 4, 1, 1, 5, 4, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(15, '2009-01-21 12:06:59', 'CMC7897NE372051-215', 8, 2, 6, 1, 1, 5, 1, '', 37, 1, 2, 2, 0, 1, 0),
|
|||
|
|
(16, '2009-01-21 12:39:26', 'CMC7898NE372052-216', 10, 2, 6, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(17, '2009-01-21 12:47:46', 'CMC7899NE372053-217', 8, 2, 6, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(18, '2009-01-21 12:50:38', 'CMC7900NE372054-218', 8, 2, 2, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(19, '2009-01-21 12:51:30', 'CMC7901NE372055-219', 10, 2, 6, 1, 1, 5, 5, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(20, '2009-01-21 15:47:36', 'CMC7902NE372056-220', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(21, '2009-01-21 15:48:03', 'CMC7903NE372057-221', 10, 2, 2, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(22, '2009-01-21 15:48:11', 'CMC7904NE372058-222', 10, 2, 6, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(23, '2009-01-21 16:00:48', 'CMC7905ACTE372059-1', 10, 3, 4, 4, 1, 1, 1, '', 37, 1, 0, 0, 0, 1, 0),
|
|||
|
|
(24, '2009-01-23 11:14:04', 'CMC7906VE652214-538', 9, 3, 4, 2, 1, 2, 1, 'Rah', 65, 1, 4, NULL, 0, 1, 0),
|
|||
|
|
(25, '2009-01-23 11:14:31', 'CMC7907VE652215-539', 9, 3, 4, 2, 1, 2, 1, '[27-3-2009 @13:38 KC]\r\nOPTION 1: Another enquiry for\r\nsupply of Magnetic Alarm\r\nSystem (re-usable) - see page\r\n3 of attached document OPTION\r\n2: You can also offer the\r\noption of (bursting disc +\r\nholder + alarm system w/ extra\r\ndiscs). We are tyring to stay\r\naway from carbon/graphite\r\ndisc. INFORMATION FROM CURRENT\r\nDISC: Make: Donadon SDD srl\r\nType: C - DCD/389 Size: DN 1"\r\nLot No: 271171/03 Yr. 2007\r\nSerial No: 1933 AH Material:\r\nASTM A240 316 Discharge Area:\r\n5.72 cm2 Disc Holder Type:\r\nHI/389 Burst pressure: 4.5 bar\r\n+/- 5% @ 25 deg C', 65, 1, 4, NULL, 0, 1, 0),
|
|||
|
|
(26, '2009-01-23 14:57:45', 'CMC7908NE372060-223', 10, 3, 4, 1, 1, 5, 11, '[27-3-2009 @13:38 KC]\r\n[20-3-2009 @9:27 KC]\r\n[27-2-2009 @12:30 KC]\r\n\r\nBut where did that knowledge\r\nexist? Only in his\r\nown consciousness, which in\r\nany case must soon be\r\nannihilated. And if all\r\nothers accepted the lie which\r\nthe Party imposed--if all\r\nrecords told the\r\nsame tale--then the lie passed\r\ninto history and became truth.\r\n''Who controls\r\nthe past,'' ran the Party\r\nslogan, ''controls the future:\r\nwho controls the\r\npresent controls the past.'' ', 37, 1, 4, 4, 1, 1, 0),
|
|||
|
|
(27, '2009-02-03 12:18:58', 'CMC7909NE372061-224', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(28, '2009-02-03 15:13:21', 'CMC7910NE372062-225', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(29, '2009-02-03 15:18:11', 'CMC7911NE372063-226', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(30, '2009-02-03 15:25:57', 'CMC7912NE372064-227', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(31, '2009-02-03 16:10:00', 'CMC7913NE372065-228', 9, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(32, '2009-02-03 16:12:56', 'CMC7914NE372066-229', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(33, '2009-02-04 11:03:29', '', 10, 3, 17, 1, 1, 5, 1, '', 0, 1, 4, 4, 0, 1, 0),
|
|||
|
|
(34, '2009-02-04 12:04:59', 'CMC7916NE372067-230', 9, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(35, '2009-02-04 12:12:22', 'CMC7917VE372068-61', 10, 3, 28, 2, 1, 5, 1, '', 37, 1, 4, 4, 0, 1, 0),
|
|||
|
|
(36, '2009-02-04 12:20:04', 'CMC7918NE372069-231', 9, 3, 29, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(37, '2009-02-04 12:32:49', 'CMC7919NE372070-232', 10, 3, 0, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(38, '2009-02-04 12:35:13', 'CMC7920NE372071-233', 9, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(39, '2009-02-04 12:38:43', 'CMC7921NE652216-500', 7, 3, 30, 1, 1, 2, 3, 'Awesooome.', 65, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(40, '2009-02-04 15:41:32', 'CMC7922NE372072-234', 10, 7, 32, 1, 1, 5, 5, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(41, '2009-02-04 16:25:32', 'CMC7923NE372073-235', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0),
|
|||
|
|
(42, '2009-02-04 16:26:39', 'CMC7924NE372074-236', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(43, '2009-02-04 16:27:20', 'CMC7925NE372075-237', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0),
|
|||
|
|
(44, '2009-02-05 10:35:57', 'CMC7926ACTE372076-2', 7, 3, 4, 4, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0),
|
|||
|
|
(45, '2009-02-05 10:52:50', 'CMC7927NTE372077-2', 7, 3, 4, 6, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0),
|
|||
|
|
(46, '2009-02-05 10:58:50', 'CMC7928OE372078-19', 7, 3, 4, 9, 2, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(47, '2009-02-05 15:53:15', 'CMC7929ACTE352070-1', 10, 4, 7, 4, 1, 4, 3, '', 35, 1, NULL, NULL, 0, 0, 0),
|
|||
|
|
(48, '2009-02-09 15:58:10', 'CMC7930NE372079-238', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0),
|
|||
|
|
(49, '2009-02-09 16:23:01', 'CMC7931NE372080-239', 9, 2, 6, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(50, '2009-02-09 16:24:51', 'CMC7932NE372081-240', 9, 2, 6, 1, 1, 5, 3, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(51, '2009-02-09 16:26:57', 'CMC7933NE372082-241', 9, 2, 2, 1, 1, 5, 5, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(52, '2009-02-09 16:28:07', 'CMC7934NE372083-242', 9, 2, 6, 1, 1, 5, 3, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(53, '2009-02-09 16:31:05', 'CMC7935NE372084-243', 9, 2, 6, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(54, '2009-02-09 16:33:42', 'CMC7936NE372085-244', 9, 2, 6, 1, 1, 5, 4, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(55, '2009-02-09 16:51:46', 'CMC7937NE372086-245', 9, 2, 6, 1, 1, 5, 5, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(56, '2009-02-09 17:04:53', 'CMC7938NE372087-246', 9, 2, 33, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(57, '2009-02-12 14:54:34', 'CMC7939NE372088-247', 8, 2, 33, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(58, '2009-02-12 14:56:34', 'CMC7940NE372089-248', 8, 2, 33, 1, 1, 5, 3, '[27-3-2009 @10:22 KC]\r\n[27-3-2009 @10:21 KC]\r\n[27-3-2009 @10:20 KC]\r\n[27-3-2009 @10:16 KC] It''s a\r\nIt''s a\r\nThis is a sentence sentence\r\nsentence sentence\r\nsentence sentence sentence\r\nsentence sentence\r\nsentence sentence sentence\r\nsentence sentence\r\nsentence sentence sentence\r\nsentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\n comment\r\n[23-2-2009 @12:50 KC]\r\nSome other Comment\r\n[23-2-2009 @12:49 KC]\r\n[23-2-2009 @11:53]\r\n[23-2-2009]\r\nThis is a Another Comment\r\n[23-2-2009]\r\nAnother Comment!\r\n[23-2-2009]\r\nSome Comment ', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(59, '2009-02-23 14:41:40', 'CMC7941NE372090-249', 10, 2, 2, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0),
|
|||
|
|
(60, '2009-02-23 14:41:46', 'CMC7942NE372091-250', 10, 2, 2, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0),
|
|||
|
|
(61, '2009-02-23 15:56:52', 'CMC7943NE372092-251', 10, 2, 2, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0),
|
|||
|
|
(76, '2009-07-07 12:17:05', 'CMC7945NE372093-252', 8, 2, 33, 1, 1, 5, 2, '[6-8-2009 @15:11 KC]Moar\r\nComments. Cache dont get\r\nmessed up!\r\n[6-8-2009 @12:21 KC]\r\n[6-8-2009 @12:20 KC]Mad Comments!!\r\n', 37, 1, 2, 2, 1, 0, 0),
|
|||
|
|
(66, '2009-02-24 14:30:57', 'CMC7948VE352072-852', 9, 2, 38, 2, 1, 4, 5, '[25-2-2009 @9:47 KC]\r\nSome Other Comment\r\n---\r\n', 35, 1, NULL, 2, 0, 1, 0),
|
|||
|
|
(77, '2009-08-20 10:09:06', 'CMC7946NE372094-253', 10, 18, 39, 1, 1, 5, 1, '[6-10-2009 @22:01 KC]\r\n', 37, 1, 0, 0, 0, 0, NULL);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `enquiry_email_queues`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `enquiry_email_queues` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`enquiry_id` int(11) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Queue to send Enquiry added notifications' AUTO_INCREMENT=4 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `enquiry_email_queues`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `enquiry_email_queues` (`id`, `enquiry_id`) VALUES
|
|||
|
|
(1, 69),
|
|||
|
|
(2, 70),
|
|||
|
|
(3, 71);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `enquiry_files`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `enquiry_files` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
`type` varchar(255) NOT NULL,
|
|||
|
|
`size` int(11) NOT NULL,
|
|||
|
|
`data` longblob NOT NULL,
|
|||
|
|
`created` datetime NOT NULL,
|
|||
|
|
`enquiry_id` int(11) NOT NULL,
|
|||
|
|
`description` mediumtext NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `enquiry_files`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `groups`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `groups` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `groups`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `groups` (`id`, `name`) VALUES
|
|||
|
|
(6, 'Administrators'),
|
|||
|
|
(5, 'Managers'),
|
|||
|
|
(4, 'Users');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `industries`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `industries` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
`parent_id` int(11) default NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=79 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `industries`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `industries` (`id`, `name`, `parent_id`) VALUES
|
|||
|
|
(1, 'Research', NULL),
|
|||
|
|
(2, 'Food & Beverages', NULL),
|
|||
|
|
(3, 'Dairy - Cheese, Butter, Milk', 2),
|
|||
|
|
(4, 'Wine', 2),
|
|||
|
|
(5, 'Soft Drinks/Juice', 2),
|
|||
|
|
(6, 'Brewing', 2),
|
|||
|
|
(7, 'Alcohol & Distilleries', 2),
|
|||
|
|
(8, 'Flour, Starch, Gluten Milling', 2),
|
|||
|
|
(9, 'Grain Storing/Handling', 2),
|
|||
|
|
(10, 'Chocolate & Confectionary', 2),
|
|||
|
|
(11, 'Snack Foods', 2),
|
|||
|
|
(12, 'Sugar Milling & Refining', 2),
|
|||
|
|
(13, 'Cereals', 2),
|
|||
|
|
(14, 'Spices', 2),
|
|||
|
|
(15, 'Coffee & Tea', 2),
|
|||
|
|
(16, 'Wood Processing', NULL),
|
|||
|
|
(17, 'MDF (Medium Density Fibreboard)', 16),
|
|||
|
|
(18, 'Particle Board', 16),
|
|||
|
|
(19, 'Saw Mills', 16),
|
|||
|
|
(20, 'Cabinetry', 16),
|
|||
|
|
(21, 'Other', 16),
|
|||
|
|
(22, 'Research - General', 1),
|
|||
|
|
(23, 'Food & Beverages - Other', 2),
|
|||
|
|
(24, 'Pulp & Paper', 0),
|
|||
|
|
(25, 'Pulp & Paper - Other', 24),
|
|||
|
|
(26, 'Oil & Gas', 0),
|
|||
|
|
(27, 'Offshore Processing', 26),
|
|||
|
|
(28, 'Onshore Processing', 26),
|
|||
|
|
(29, 'Power', 26),
|
|||
|
|
(32, 'Refining', 26),
|
|||
|
|
(33, 'Storage Terminals', 26),
|
|||
|
|
(52, 'Chemical & Petrochemical - General', 51),
|
|||
|
|
(51, 'Chemical & Petrochemical', 0),
|
|||
|
|
(40, 'Heating, Ventillation, Air-Conditioning - General', 39),
|
|||
|
|
(39, 'Heating, Ventillation, Air-Conditioning', 0),
|
|||
|
|
(59, 'Hospitals', 57),
|
|||
|
|
(58, 'Medical - General', 57),
|
|||
|
|
(57, 'Medical', 0),
|
|||
|
|
(56, 'Education - General', 55),
|
|||
|
|
(55, 'Education', 0),
|
|||
|
|
(54, 'Plumbing - General', 53),
|
|||
|
|
(53, 'Plumbing', 0),
|
|||
|
|
(61, 'OEM - Original Equipment Manufacturers', 0),
|
|||
|
|
(62, 'OEM - General', 61),
|
|||
|
|
(63, 'Government', 0),
|
|||
|
|
(64, 'Government - General', 63),
|
|||
|
|
(65, 'My Awesome Industry', 0),
|
|||
|
|
(66, 'First SubIndustry!!', 65),
|
|||
|
|
(67, 'New Sub Industry!!', 65),
|
|||
|
|
(68, 'NewSUBBB', 65),
|
|||
|
|
(69, 'Top Level', 0),
|
|||
|
|
(70, 'Second Level', 69),
|
|||
|
|
(71, 'First Indust', 0),
|
|||
|
|
(72, '', 71),
|
|||
|
|
(73, 'Rah', 71),
|
|||
|
|
(74, 'MyNewIndustry', 0),
|
|||
|
|
(75, 'Something', 74),
|
|||
|
|
(76, 'Rah', 0),
|
|||
|
|
(77, '', 76),
|
|||
|
|
(78, 'radd', 76);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `industries_customers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `industries_customers` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`customer_id` int(11) NOT NULL,
|
|||
|
|
`industry_id` int(11) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=20 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `industries_customers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `industries_customers` (`id`, `customer_id`, `industry_id`) VALUES
|
|||
|
|
(11, 2, 17),
|
|||
|
|
(10, 2, 22),
|
|||
|
|
(9, 2, 7),
|
|||
|
|
(8, 2, 56),
|
|||
|
|
(12, 2, 21),
|
|||
|
|
(13, 18, 15),
|
|||
|
|
(14, 18, 3),
|
|||
|
|
(15, 18, 8),
|
|||
|
|
(19, 15, 12),
|
|||
|
|
(18, 15, 15);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `jobs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `jobs` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`created` datetime NOT NULL,
|
|||
|
|
`principle_ship_date` date NOT NULL,
|
|||
|
|
`arrive_date` date NOT NULL,
|
|||
|
|
`sent_date` date NOT NULL,
|
|||
|
|
`name` varchar(255) NOT NULL COMMENT 'Job Number',
|
|||
|
|
`enquiry_id` int(11) NOT NULL,
|
|||
|
|
`customer_id` int(11) NOT NULL,
|
|||
|
|
`contact_id` int(11) NOT NULL,
|
|||
|
|
`billing_address_id` int(11) NOT NULL,
|
|||
|
|
`shipping_address_id` int(11) NOT NULL,
|
|||
|
|
`jobstatus_id` int(11) NOT NULL,
|
|||
|
|
`comments` text NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `jobs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `jobstatuses`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `jobstatuses` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `jobstatuses`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `job_products`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `job_products` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`quoted_product_id` int(11) NOT NULL,
|
|||
|
|
`job_id` int(11) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `job_products`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `principles`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `principles` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL COMMENT 'Principle Name',
|
|||
|
|
`code` int(11) NOT NULL COMMENT 'Principle code',
|
|||
|
|
`country_id` int(11) NOT NULL COMMENT 'Country Foreign Key',
|
|||
|
|
`currency_id` int(11) NOT NULL,
|
|||
|
|
`short_name` varchar(50) NOT NULL,
|
|||
|
|
`url` varchar(300) default NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `principles`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `principles` (`id`, `name`, `code`, `country_id`, `currency_id`, `short_name`, `url`) VALUES
|
|||
|
|
(1, 'F.H Papenmeier', 65, 3, 1, 'Papenmeier', 'http://www.papenmeier.de'),
|
|||
|
|
(2, 'Herberts', 65, 3, 1, '', NULL),
|
|||
|
|
(3, 'T and D', 95, 6, 5, '', NULL),
|
|||
|
|
(4, 'Mid-West Instrument', 35, 1, 3, 'Mid-West', NULL),
|
|||
|
|
(5, 'Alia Inc', 37, 4, 3, 'Alia-INC', NULL),
|
|||
|
|
(7, 'ffffffff', 65, 1, 1, '', NULL),
|
|||
|
|
(8, 'Reading Tech', 36, 4, 3, '', NULL);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `principle_addresses`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `principle_addresses` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`address` text NOT NULL COMMENT 'street or unit number and street name',
|
|||
|
|
`city` varchar(255) NOT NULL COMMENT 'Suburb / City',
|
|||
|
|
`state` varchar(255) NOT NULL COMMENT 'State',
|
|||
|
|
`country_id` int(11) NOT NULL COMMENT 'Country foreign Key',
|
|||
|
|
`principle_id` int(11) NOT NULL COMMENT 'Customer foreign key',
|
|||
|
|
`type` varchar(255) NOT NULL COMMENT 'either bill / ship / both',
|
|||
|
|
`postcode` varchar(50) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `principle_addresses`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `principle_addresses` (`id`, `address`, `city`, `state`, `country_id`, `principle_id`, `type`, `postcode`) VALUES
|
|||
|
|
(1, '1901 Papenmeier Rd', 'PapenTown', 'PapenState', 3, 1, '2', '15981598');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `principle_contacts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `principle_contacts` (
|
|||
|
|
`principle_id` int(11) NOT NULL,
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`first_name` varchar(255) NOT NULL,
|
|||
|
|
`last_name` varchar(255) NOT NULL,
|
|||
|
|
`job_title` varchar(255) default NULL,
|
|||
|
|
`email` varchar(255) NOT NULL,
|
|||
|
|
`phone` varchar(255) NOT NULL,
|
|||
|
|
`fax` varchar(255) default NULL,
|
|||
|
|
`mobile` varchar(255) default NULL,
|
|||
|
|
`notes` text NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `principle_contacts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `principle_contacts` (`principle_id`, `id`, `first_name`, `last_name`, `job_title`, `email`, `phone`, `fax`, `mobile`, `notes`) VALUES
|
|||
|
|
(1, 1, 'Papen', 'Man', 'Engineer', 'papenman@papenmeier.de', '12591051950', '150190', '', 'Purchasing Guy'),
|
|||
|
|
(1, 2, 'Sales', 'Guy', 'Sales Guy', 'sguy@papenmeier.de', '150150910590151', '', '', 'Sales Guy'),
|
|||
|
|
(4, 3, 'Mid-WestGuy', 'Mid-WestPerson', 'Sales ', 'person@midwest.com', '12512598599012515', '', '', 'Notes!!!z'),
|
|||
|
|
(4, 4, 'Bob', 'Jones', 'Salesman', 'bjones@mw.com', '', '', '', '');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `products`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `products` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`principle_id` int(11) NOT NULL COMMENT 'Principle FK',
|
|||
|
|
`product_category_id` int(11) NOT NULL,
|
|||
|
|
`title` varchar(255) NOT NULL COMMENT 'This must match the Title in the Excel Costing File',
|
|||
|
|
`description` text NOT NULL,
|
|||
|
|
`model_number` varchar(255) default NULL COMMENT 'Part or model number principle uses to identify this product',
|
|||
|
|
`model_number_format` varchar(255) default NULL COMMENT '%1% - first item, %2% , second item etc ',
|
|||
|
|
`notes` text COMMENT 'Any notes about this product. Note displayed on quotes',
|
|||
|
|
`stock` tinyint(1) NOT NULL COMMENT 'Stock or Ident',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `products`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `products` (`id`, `principle_id`, `product_category_id`, `title`, `description`, `model_number`, `model_number_format`, `notes`, `stock`) VALUES
|
|||
|
|
(2, 4, 2, 'Model 120 ''Filter Minder'' Differential Pressure Gauge', '<h6>STANDARD MODEL SPECIFICATIONS</h6><p><strong>120: 6000</strong> P.S.I.G Working pressure, Adjusting Screws & End Plugs, Stainless steel piston, ceramic magnet, “Engineering Plastic†Gauge Case with shatter-resistant acrylic lens</p>', '120', '%1-%2%3-%4%5-%6%7', '', 0),
|
|||
|
|
(3, 3, 2, 'RTR-51A - Wireless Temperature Data Logger', '<p>\r\n<meta content="text/html; charset=utf-8" http-equiv="CONTENT-TYPE" />\r\n<title></title>\r\n<meta content="OpenOffice.org 2.4 (Linux)" name="GENERATOR" /> <style type="text/css">\r\n <!--\r\n @page { size: 21cm 29.7cm; margin: 2cm }\r\n P { margin-bottom: 0.21cm }\r\n -->\r\n </style>\r\n<p style="margin-bottom: 0cm;"><b>Temperature measurement range:</b> -40 to 80°C (internal sensor)<br />\r\n<b>Measurement Display Resolution:</b> 0.1°C</p>\r\n<p style="margin-bottom: 0cm;"><font face="Times New Roman, serif"><font size="2"><b>Measurement Accuracy:</b> Average ±0.5°C</font></font></p>\r\n<p style="margin-left: 3.31cm; text-indent: -3.31cm; margin-bottom: 0cm;"><font face="Times New Roman, serif"><font size="2"><b>Recording Interval:</b> 1,2,5,10,15,20,30 seconds / 1,2,5,10,15,20,30,60 minutes </font></font></p>\r\n<p style="margin-left: 3.31cm; margin-bottom: 0cm;"><font face="Times New Roman, serif"><font size="2">Total of 15 choices (Excluding Event data)</font></font></p>\r\n<p style="margin-bottom: 0cm;"><font face="Times New Roman, serif"><font size="2"><b>Recording Capacity:</b> 16,000 reading x 1 Channel</font></font></p>\r\n<p style="margin-bottom: 0cm;"><font face="Times New Roman, serif"><font size="2"><b>Battery Life:</b> Approx. 6 Months</font></font></p>\r\n<p style="margin-bottom: 0cm;"><font face="Times New Roman, serif"><font size="2"><b>Protection:</b> IP67 (Immersion proof)</font></font></p>\r\n<p style="margin-bottom: 0cm;"> </p>\r\n</p>', 'RTA-51A', NULL, '', 0),
|
|||
|
|
(4, 3, 2, 'VR-71 Voltage Recorder', '<br /><p>Mid-West Model 120 DP Gauge</p><p>MODEL NO. 120 - SG - 00 – O(CA)<br />Range: 0 – 250 kPa<br />Switch Set @ Please Advise<br />Dial: 2-1/2" Round</p><p>Standard Model Specifications<br />120: 6000 P.S.I.G Working pressure, Adjusting Screws & End Plugs, Stainless steel piston, ceramic magnet, “Engineering Plastic†Gauge Case with shatter-resistant acrylic lens+/- 3-2-3% full scale accuracy(ascending) <br />Material S: 316 Stainless Steel body, SS piston<br />Dial Size: G: 4-1/2†Round Uni-Directional Anod. Al Housing<br />Seals: 0: Buna N <br />Connections: 0: 1/4" FNPT Back connections<br />Options: O: None <br />Electrical Configurations C: 1 Switch with 1/4" FNPT Electrical Con. NEMA 4X<br />Electrical Specifications: A: S.P.D.T, 3W, 0.25 Amp., 125 VAC/VDC (Standard)</p>', 'VR-71', '', '', 0),
|
|||
|
|
(24, 1, 1, 'OMG This has all the pretty things', '<p>\r\n <strong>BOLD TEXT</strong></p>\r\n<p>\r\n </p>\r\n<p>\r\n <strong><em>BOLD ITALICS</em></strong></p>\r\n<p>\r\n </p>\r\n<p>\r\n <strong><em>YAY<sup>2</sup></em></strong></p>\r\n', NULL, NULL, '', 0);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `product_attachments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `product_attachments` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
`type` varchar(255) NOT NULL,
|
|||
|
|
`size` int(11) NOT NULL,
|
|||
|
|
`filename` varchar(255) NOT NULL,
|
|||
|
|
`created` datetime NOT NULL,
|
|||
|
|
`product_id` int(11) NOT NULL,
|
|||
|
|
`description` mediumtext NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `product_attachments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `product_categories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `product_categories` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL COMMENT 'short name for the category',
|
|||
|
|
`description` varchar(500) default NULL COMMENT 'a longer description if needed',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `product_categories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `product_categories` (`id`, `name`, `description`) VALUES
|
|||
|
|
(1, 'Flow Measurement', ''),
|
|||
|
|
(2, 'Differential Pressure', ''),
|
|||
|
|
(3, 'Vision in the Process', '');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `product_options`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `product_options` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`product_id` int(11) NOT NULL COMMENT 'Principle FK',
|
|||
|
|
`product_options_category_id` int(11) default NULL,
|
|||
|
|
`title` varchar(255) NOT NULL COMMENT 'This must match the Title in the Excel Costing File',
|
|||
|
|
`description` text,
|
|||
|
|
`model_number` varchar(255) default NULL COMMENT 'Part or model number principle uses to identify this product',
|
|||
|
|
`default` tinyint(1) NOT NULL,
|
|||
|
|
`notes` text COMMENT 'Any notes about this product. Note displayed on quotes',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=21 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `product_options`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `product_options` (`id`, `product_id`, `product_options_category_id`, `title`, `description`, `model_number`, `default`, `notes`) VALUES
|
|||
|
|
(1, 2, 1, 'Aluminium Body, S.S. Piston', 'A. Aluminium Body, S.S. Piston (Standard)', 'A', 1, ''),
|
|||
|
|
(4, 2, 2, '2-1/2"Round Uni-Directional Dial', '', 'A', 1, ''),
|
|||
|
|
(3, 2, 1, '316 Stainless Steel body, SS piston', '', 'S', 0, ''),
|
|||
|
|
(5, 2, 2, '4-1/2"Round Uni-Directional Dial', '', 'C', 0, ''),
|
|||
|
|
(10, 2, 4, '1/4" FNPT Back Connections', '1/4" FNPT Back Connections', '0', 1, ''),
|
|||
|
|
(6, 2, 3, 'Buna-N', '', '0', 0, ''),
|
|||
|
|
(7, 2, 3, 'Viton', '', '1', 1, ''),
|
|||
|
|
(8, 2, 3, 'Neoprene', '', '2', 0, ''),
|
|||
|
|
(9, 2, 3, 'Teflon', '', '4', 0, ''),
|
|||
|
|
(11, 2, 4, '1/4" FNTP End Connections', '1/4" FNTP End Connections', '2', 0, ''),
|
|||
|
|
(12, 2, 4, '7/16" - 20 Str. Thd. O-Ring Port (Back Connections)', '7/16" - 20 Str. Thd. O-Ring Port (Back Connections)', '6', 0, ''),
|
|||
|
|
(13, 2, 4, '1/2" FNPT Stainless Steel Adaptors', '1/2" FNPT Stainless Steel Adaptors', '7', 0, ''),
|
|||
|
|
(14, 2, 4, '1/2" FNPT Monel Adaptors', '1/2" FNPT Monel Adaptors', '8', 0, ''),
|
|||
|
|
(15, 2, 4, 'Special (Uncoded Options)', '', '9', 0, ''),
|
|||
|
|
(16, 2, 5, 'None', '', 'O', 1, ''),
|
|||
|
|
(17, 2, 5, 'Reversed High/Low Process Connections', 'Reversed High/Low Process Connections', 'A', 0, ''),
|
|||
|
|
(18, 2, 5, 'DIN2353 12-S(12mm) Steel Tube Fittings (2)', 'DIN2353 12-S(12mm) Steel Tube Fittings (2)', 'B', 0, ''),
|
|||
|
|
(19, 2, 5, 'Mounting Holes in Gauge Body for Field Mounting of Electrical Configurations Options A & B', '', 'C', 0, ''),
|
|||
|
|
(20, 2, 5, 'Mounting Holes in Gauge Body for Field Mounting of Electrical Configurations Options L & M', '', 'D', 0, '');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `product_options_categories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `product_options_categories` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`product_id` int(11) NOT NULL,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
`location` int(20) NOT NULL COMMENT 'Its place in the model number. 1 starts from after the Model number of the Product. ie 120-A , A is in location 1.',
|
|||
|
|
`exclusive` tinyint(1) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `product_options_categories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `product_options_categories` (`id`, `product_id`, `name`, `location`, `exclusive`) VALUES
|
|||
|
|
(1, 2, 'Material', 1, 1),
|
|||
|
|
(2, 2, 'Dial Size', 2, 1),
|
|||
|
|
(3, 2, 'Seals', 4, 1),
|
|||
|
|
(4, 2, 'Connections', 6, 1),
|
|||
|
|
(5, 2, 'Options', 7, 0);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `quotes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `quotes` (
|
|||
|
|
`created` datetime NOT NULL,
|
|||
|
|
`modified` datetime NOT NULL,
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`enquiry_id` int(50) NOT NULL,
|
|||
|
|
`revision` int(5) NOT NULL COMMENT 'limited at 5 digits. Really, you''re not going to have more revisions of a single quote than that',
|
|||
|
|
`delivery_time` varchar(400) NOT NULL COMMENT 'estimated delivery time for quote',
|
|||
|
|
`payment_terms` varchar(400) NOT NULL,
|
|||
|
|
`days_valid` int(5) NOT NULL,
|
|||
|
|
`date_issued` date NOT NULL,
|
|||
|
|
`valid_until` date NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `quotes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `quotes` (`created`, `modified`, `id`, `enquiry_id`, `revision`, `delivery_time`, `payment_terms`, `days_valid`, `date_issued`, `valid_until`) VALUES
|
|||
|
|
('2009-08-13 14:17:50', '2009-08-13 14:17:50', 1, 76, 0, '', '', 0, '2009-08-13', '0000-00-00'),
|
|||
|
|
('2009-08-14 12:34:05', '2009-08-14 12:34:05', 2, 76, 1, '', '', 0, '2009-08-14', '0000-00-00'),
|
|||
|
|
('2009-08-20 16:35:01', '2009-08-20 16:35:01', 3, 77, 0, '', '', 0, '2009-08-20', '0000-00-00'),
|
|||
|
|
('2009-08-27 09:57:05', '2009-08-27 09:57:05', 4, 1, 0, '', '', 0, '2009-08-27', '0000-00-00');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `quote_pages`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `quote_pages` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`page_number` int(11) NOT NULL,
|
|||
|
|
`content` text NOT NULL,
|
|||
|
|
`quote_id` int(11) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `quote_pages`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `quote_pages` (`id`, `page_number`, `content`, `quote_id`) VALUES
|
|||
|
|
(3, 1, '<p>Dear Sir,</p>\r\n<p> </p>\r\n<p>This is a cover page.</p>\r\n<p> </p>\r\n<p>Sincerely.</p>\r\n<p> </p>\r\n<p>Me.</p>', 1),
|
|||
|
|
(2, 2, '<h1>Re: Awesomeosity. V4</h1>\r\n<p>Dear Mr. Awesome,</p>\r\n<p> </p>\r\n<p>Are you awesome? I think AJAX and IFrames seem pretty slick. If only this box was bigger.</p>\r\n<p> </p>\r\n<p>Sincerely.</p>\r\n<p> </p>\r\n<p>Karl Cordes</p>\r\n<p><em>Awesome Engineer 2.0</em></p>\r\n<p> </p>', 1),
|
|||
|
|
(4, 1, '<h2>Re: Some Awesome Product</h2>\r\n<p>Dear Sir,</p>\r\n<p>Thank you for your enquiry regarding Some Awesome Product.</p>\r\n<p> </p>\r\n<p>Please see the following quotation with pricing specifications and details for:</p>\r\n<p> </p>\r\n<p>1x Awesome Product</p>\r\n<p> </p>\r\n<p>We look forward to you receiving your money. Thanks for your business.</p>\r\n<p> </p>\r\n<p>Regards,</p>\r\n<p> </p>\r\n<p>Karl Cordes</p>', 2),
|
|||
|
|
(8, 1, '<p>\r\n Dear Bill,</p>\r\n<p style="text-align: center;">\r\n <br />\r\n <strong>RE: Awesome Products</strong></p>\r\n<p>\r\n Thank you for your enquiry regarding our $Principle Products. Please see the following quotation for:</p>\r\n<p>\r\n </p>\r\n<table align="center" border="0" cellpadding="1" cellspacing="1" style="width: 100%;">\r\n <tbody>\r\n <tr>\r\n <td>\r\n Item</td>\r\n <td>\r\n Product</td>\r\n </tr>\r\n <tr>\r\n <td>\r\n </td>\r\n <td>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n </td>\r\n <td>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p>\r\n </p>\r\n<p>\r\n Regards,</p>\r\n<p>\r\n <br />\r\n Sales Engineer</p>\r\n<p>\r\n </p>\r\n<p>\r\n Attachments:</p>\r\n<p>\r\n <em>attachment1.pdf </em><br />\r\n <em>attachment2.pdf</em></p>\r\n<p>\r\n </p>\r\n<p>\r\n </p>\r\n<p>\r\n </p>\r\n<p>\r\n </p>\r\n<p>\r\n </p>\r\n<p>\r\n <em>SOMEONE</em></p>\r\n', 3),
|
|||
|
|
(9, 1, '', 4);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `quote_products`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `quote_products` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`item_number` varchar(4) NOT NULL,
|
|||
|
|
`option` tinyint(1) NOT NULL default '0',
|
|||
|
|
`quantity` float NOT NULL,
|
|||
|
|
`title` varchar(500) NOT NULL,
|
|||
|
|
`description` text NOT NULL,
|
|||
|
|
`quote_id` int(11) NOT NULL,
|
|||
|
|
`product_id` int(11) NOT NULL,
|
|||
|
|
`costing_id` int(11) default NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `quote_products`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `quote_products` (`id`, `item_number`, `option`, `quantity`, `title`, `description`, `quote_id`, `product_id`, `costing_id`) VALUES
|
|||
|
|
(7, '', 0, 0, '', '', 3, 2, NULL),
|
|||
|
|
(8, '', 0, 0, '', '', 3, 2, NULL),
|
|||
|
|
(9, '', 0, 0, '', '', 3, 2, NULL),
|
|||
|
|
(10, '', 0, 0, '', '<h6>STANDARD MODEL SPECIFICATIONS</h6><p><strong>120: 6000</strong> P.S.I.G Working pressure, Adjusting Screws & End Plugs, Stainless steel piston, ceramic magnet, “Engineering Plastic†Gauge Case with shatter-resistant acrylic lens</p>', 3, 2, NULL);
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `quote_product_options`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `quote_product_options` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`product_id` int(11) NOT NULL COMMENT 'Principle FK',
|
|||
|
|
`product_options_category_id` int(11) default NULL,
|
|||
|
|
`title` varchar(255) NOT NULL COMMENT 'This must match the Title in the Excel Costing File',
|
|||
|
|
`description` text,
|
|||
|
|
`model_number` varchar(255) default NULL COMMENT 'Part or model number principle uses to identify this product',
|
|||
|
|
`default` tinyint(1) NOT NULL,
|
|||
|
|
`notes` text COMMENT 'Any notes about this product. Note displayed on quotes',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `quote_product_options`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `states`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `states` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
`shortform` varchar(255) NOT NULL COMMENT 'NSW, ACT etc.',
|
|||
|
|
`enqform` char(3) NOT NULL COMMENT '1 / 2 char for enquiry register',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `states`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `states` (`id`, `name`, `shortform`, `enqform`) VALUES
|
|||
|
|
(1, 'New South Wales', 'NSW', 'N'),
|
|||
|
|
(2, 'Victoria', 'VIC', 'V'),
|
|||
|
|
(3, 'Tasmania', 'TAS', 'T'),
|
|||
|
|
(4, 'Australian Capital Territory', 'ACT', 'ACT'),
|
|||
|
|
(5, 'Queensland', 'QLD', 'Q'),
|
|||
|
|
(6, 'Northern Territory', 'NT', 'NT'),
|
|||
|
|
(7, 'Western Australia', 'WA', 'W'),
|
|||
|
|
(8, 'South Australia', 'SA', 'S'),
|
|||
|
|
(9, 'Overseas', 'Overseas', 'O');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `statuses`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `statuses` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `statuses`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `statuses` (`id`, `name`) VALUES
|
|||
|
|
(1, 'Request for Quotation '),
|
|||
|
|
(2, 'Assigned to Sales Engineer'),
|
|||
|
|
(3, 'Job Won - Order Placed'),
|
|||
|
|
(4, 'Job Lost on Price'),
|
|||
|
|
(5, 'Quote Issued - Follow Up Needed'),
|
|||
|
|
(6, 'Request for Information'),
|
|||
|
|
(8, 'Job Lost on Price and Delivery'),
|
|||
|
|
(9, 'Job Lost on Delivery'),
|
|||
|
|
(10, 'Job Cancelled or Deferred'),
|
|||
|
|
(11, 'Information Sent');
|
|||
|
|
|
|||
|
|
-- --------------------------------------------------------
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `users`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `users` (
|
|||
|
|
`id` int(11) NOT NULL auto_increment,
|
|||
|
|
`username` char(50) NOT NULL,
|
|||
|
|
`password` char(60) NOT NULL,
|
|||
|
|
`first_name` varchar(255) NOT NULL,
|
|||
|
|
`last_name` varchar(255) NOT NULL,
|
|||
|
|
`email` varchar(255) NOT NULL,
|
|||
|
|
`job_title` varchar(255) NOT NULL,
|
|||
|
|
`group_id` int(11) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `users`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `users` (`id`, `username`, `password`, `first_name`, `last_name`, `email`, `job_title`, `group_id`) VALUES
|
|||
|
|
(10, 'carpis', '374a1a3b89fd13e1e53c3c5b2bdaca4ab56851e4', 'Con', 'Carpis', 'carpis@cmctechnologies.com.au', 'Managing Director', 5),
|
|||
|
|
(9, 'testuser', '80911124513ecddda4547179ccae1221e370d32d', 'Test', 'User', 'tuser@somewhere.com', 'Crash Test Dummy', 4),
|
|||
|
|
(8, 'karl', '88d08476b46fd445bbc88beb928797dee2c91f3c', 'Karl', 'Cordes', 'karl@cmctechnologies.com.au', 'Systems Administrator / Software Developer', 6),
|
|||
|
|
(7, 'orwell', 'f868d22c308249db7e1fb2508d47b82fb139dbcc', 'George', 'Orwell', 'orwell@minitrue.gov.uk', 'Genius', 6);
|