If you are an advanced HTML user you can create your own template rather than choosing one from the Template Library.
Where to begin:
Start with one of these this example templates below. You can also download any of the templates in the Template Library and modify them. |
Uploading a Template:
After creating a template you will need to upload to the application.
|
Testing a Template:
Test and Test again. Test each time you make a change to your layout, that way if something breaks you can easily determine what caused the problem. You can use the Inbox Preview Assistant to see your email template in all email clients. Since you will normally need to test a template multiple times we recommend doing the repeated uploading needed for testing using Upload/Download HTML section of Step 2 – Content of the Email Publisher. Once the template is finalized you can upload to the Template Library so it’s available for others to use within your company or business when choosing a Template. Technically your template does not need to be in the Template Library if you are working solo and prefer to edit your HTML file on a local computer you can. |
Tips
Make sure you set a font face, size, and color for all fonts. All email client default fonts vary. Make sure to test send your template to find any font issues between email clients. Content that does not have a font face, size, or color defined will inherit the properties of the font tag applied in step 4.
If you define the width of a column, and the column has no content or image, make sure to delete the character from the code to set the width exactly to your specifications. Otherwise, the character in the code will cause the width to be 1 pixel larger than defined. You do not need to insert a placeholder image to set column width.
If you define the height of a row, and the row has no image or content, place a space holder image in that row. Some email clients will not properly display a defined height.
If you need a row to be 1 pixel high, place a 1×1 pixel image in the row that is the same color as the background. Make sure to also define the height. This will force the row to display the way you have coded it.
If you have an outside border of the newsletter that is a gradient fade, try to use columns with a background color on the table to set the gradient. This will avoid the use of background images and will display properly no matter how long the newsletter stretches.
Merge Tags:
Merge tags allow you to merge information from your database into your email Go here for reference on all Merge Tags available.
|
Editable Regions:
Create an editable region (used in Step 2 -Content of the Email Publisher) by wrapping a section of content.
<!– InstanceBeginEditable name=”Content” –> <!– InstanceEndEditable –>
|
Repeating the Editable Region:
Create a repeating editable region (used in Step 2 -Content of the Email Publisher) by wrapping a section of content.
<!– InstanceBeginRepeat name=”RepeatRegion1” –><!– InstanceBeginRepeatEntry –> ….. <!– InstanceBeginEditable name=”Content1” –> <!– InstanceEndEditable –> ….. <!– InstanceEndRepeatEntry –><!– InstanceEndRepeat –> To control how many times a repeating region can repeat use _EntryLimitX To control the minimum number of entries use _EntryMinimumX. Use zero to allow deleting. <!– InstanceBeginRepeat name=”RepeatRegion2_EntryLimit10_EntryMinimum0” –><!– InstanceBeginRepeatEntry –> ….. <!– InstanceBeginEditable name=”Content1” –> <!– InstanceEndEditable –> ….. <!– InstanceEndRepeatEntry –><!– InstanceEndRepeat –> |
Define a default font style for the entire document:
A div tag is placed directly after the opening body tag wrapping the entire content of the body tag. <body> …… …… …… </div> </body> |
Footer:
The system will automatically inject a footer with your information and standard requires links. If you want to use a custom footer you must contact support. |
Design Meta Tag:
The meta tag name=”design” is required and used for defining default attributes for the template and for the system injected footer. The content value is structured like a CSS definition. It uses a list of semicolon-separated entries. Each entry is formatted as key=value. For Example <meta name=”design” content=”font-family=’Times New Roman, serif’; font-size=’14px’; color=’#cc99ab’; “> You can style links within all editable regions by prefixing the style name with “link.”. To make all links red: To make links have no underline: Combine multiple styles: The main design meta tag applies to the whole template, but you can define additional design meta tags to apply only to specifically-named editable regions using the following structure: <meta name=”design.{region name}” content=”…”> The {region name} is not case-insensitive and may contain whitespace. The region name can also be a pattern with wildcards, where * matches any characters, and ? matches any single character. Example that applies to specific editable region named “Main Image”: Example that uses a wildcard to match all regions that start with “Call”, which is useful for repeating regions: You can restrict images in a specific region, such as a sidebar, to a certain width using this feature: Valid entries are: |
|