Skip to content

Instantly share code, notes, and snippets.

@radityopw
Created June 2, 2011 21:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radityopw/1005425 to your computer and use it in GitHub Desktop.
Save radityopw/1005425 to your computer and use it in GitHub Desktop.
save the mail to db
CREATE TABLE IF NOT EXISTS `mail_in` (
`id` bigint(255) NOT NULL auto_increment,
`tanggal` varchar(255) NOT NULL,
`uid` varchar(255) NOT NULL,
`from` varchar(255) NOT NULL,
`to` varchar(255) NOT NULL,
`subject` varchar(255) NOT NULL,
`body` longtext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uid` (`uid`)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment