MonsterCommerce offers you the ability to completely customize customer communication. Using a combination of custom HTML and ASP function calls, you can control the information and presentation of your Order Confirmation Emails.
In the Orders >> Order HTML/Email System >> Order Emails Editor, you find a basic option and an advanced option.
The Basic Order Email Option allows you to control the header and footer of your confirmation email, through custom HTML. The Advanced Email Option allows you to control all of the contents within your order confirmation emails
The Order Email Editor is where you control the contents of your confirmation email. Your email can contain only custom HTML or a mix of dynamically generated information and your custom HTML. The dynamically generated information is created by calling individual ASP function calls.
HTML emails need to start with standard HTML code, as follows:
<html>ENTER TITLE HERE
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
Use custom HTML or ASP function calls for the contents of your email. You can place ASP function calls within paragraph tags, table tags, or they can stand on their own.
<p><%DRAWPAYMENTINFO%></p>
<table border="0">
<tr>
<td>
<%DRAWPAYMENTINFO%>
</td>
</tr>
</table>
ASP function calls do not contain any text styles, sizes, or color settings. You can adjust the display of this information by wrapping CSS styles around your ASP function calls.
<span class="example"><%DRAWPAYMENTINFO%></span>
HTML emails need to end with standard HTML code, as follows:
</body>
</html>
Below is a list of available function calls and a corresponding image to indicate which code relates to what information
<%DRAWCUSTOMERFIRSTLASTNAME%>
<%DRAWORDERHEADERINFO%>
<%DRAWBILLINGINFO%>
<%DRAWSHIPPINGINFO%>
<%DRAWPAYMENTINFO%>
<%DRAWBASICPRODUCTINFO%><%DRAWADVANCEDPRODUCTINFO%><%DRAWTOTALSINFO%>
<%DRAWORDERTRACKING%>![]()