PHP Classes

File: mails.sql

Recommend this page to a friend!
  Classes of Abhijit Jagtap   PHP IMAP Search   mails.sql   Download  
File: mails.sql
Role: Auxiliary data
Content type: text/plain
Description: sql file
Class: PHP IMAP Search
Find and save messages in IMAP server to database
Author: By
Last change:
Date: 8 years ago
Size: 527 bytes
 

Contents

Class file image Download
-- -- Table structure for table `mails` -- CREATE TABLE IF NOT EXISTS `mails` ( `mails_id` int(11) NOT NULL AUTO_INCREMENT, `charset` varchar(200) NOT NULL, `fromaddress` varchar(200) NOT NULL, `toaddress` varchar(200) NOT NULL, `Date` datetime NOT NULL, `MailDate` datetime NOT NULL, `subject` varchar(500) NOT NULL, `htmlmsg` text NOT NULL, `plainmsg` text NOT NULL, `attachments` varchar(500) NOT NULL, PRIMARY KEY (`mails_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;