1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 01:54:12 +02:00

Latest mailer updates - primarily use new features in newsletter and notify. Also newsletter enhancements; thanks nlstart

This commit is contained in:
e107steved
2009-11-19 20:24:21 +00:00
parent 93933d1d74
commit eb05b14438
15 changed files with 939 additions and 517 deletions

View File

@@ -0,0 +1,13 @@
CREATE TABLE newsletter (
newsletter_id int(10) unsigned NOT NULL auto_increment,
newsletter_datestamp int(10) unsigned NOT NULL,
newsletter_title varchar(200) NOT NULL,
newsletter_text text NOT NULL,
newsletter_header text NOT NULL,
newsletter_footer text NOT NULL,
newsletter_subscribers text NOT NULL,
newsletter_parent int(11) NOT NULL,
newsletter_flag tinyint(4) NOT NULL,
newsletter_issue varchar(100) NOT NULL,
PRIMARY KEY (newsletter_id)
) TYPE=MyISAM;