mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 12:32:14 +09:00
Add advanced mailer module
This commit is contained in:
parent
0961253a74
commit
f9394ca26d
26 changed files with 1997 additions and 0 deletions
11
modules/advanced_mailer/schemas/advanced_mailer_log.xml
Normal file
11
modules/advanced_mailer/schemas/advanced_mailer_log.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<table name="advanced_mailer_log">
|
||||
<column name="mail_id" type="number" size="11" notnull="notnull" primary_key="primary_key" auto_increment="auto_increment" />
|
||||
<column name="mail_from" type="varchar" size="250" notnull="notnull" />
|
||||
<column name="mail_to" type="text" notnull="notnull" />
|
||||
<column name="subject" type="varchar" size="250" notnull="notnull" />
|
||||
<column name="calling_script" type="varchar" size="250" notnull="notnull" />
|
||||
<column name="sending_method" type="varchar" size="40" notnull="notnull" />
|
||||
<column name="regdate" type="date" notnull="notnull" index="idx_regdate" />
|
||||
<column name="status" type="varchar" size="40" notnull="notnull" index="idx_status" />
|
||||
<column name="errors" type="bigtext" />
|
||||
</table>
|
||||
Loading…
Add table
Add a link
Reference in a new issue