| this article last updated: November 16, 2009 Due to inevitable changes that will be made to the shopping cart software over time, the cart's variable and database structure may change from time to time without advanced notice. We will attempt to keep the information in this article up-to-date, but Modular Merchant makes no guarantee as to the accuracy of the information provided in this article. Use this information at your own risk. 
 This article outlines the database structure for the MMv4 em_template database table.
 
 idPrimary key of the em_template table.
 int(10) | unsigned | auto increment | primary key| indexed
 
activeSignifies if this email template is active or not.
 int(10) | unsigned | indexed | 0/timestamp
 
from_emailThe email address in which the email template will be addressed from.
 varchar(255) | indexed
from_nameThe name in which the email template will be addressed from.
 varchar(255) | indexed
subjectThe subject that will be associated with all emails that use this email template.
 varchar(255) | indexed
text_msgThe text email message for this email template.
 varchar(255) | indexed
html_msgThe HTML rendered email message for this email template.
 varchar(255) | indexed
track_linksSpecifies if html links will be tracked for this specific email template.
 int(10) | unsigned | indexed | 0/timestamp
track_readsSpecifies if the emails opened will be tracked for this specific email template.
 int(10) | unsigned | indexed | 0/timestamp
bcc_emailEmail address that will be Blind Carbon Copied for this email template.
 varchar(255) | indexed
   
 
 |