Fully customize an Email Template in Certain
Custom Email Templates can be created to send fully customized email for an Event or for a specific Form.
Tips for successful email communications
- Use a new style sheet, and embed it into the Email Template using
<style>tags. - Name your styles differently than those in your Display Template. The system does reference these styles.
- Use a new style sheet, and embed it into the Email Template using
<style>tags. - Name your styles differently than those in your Display Template. The system does reference these styles.
- Do not use background images. Use only background colors.
- Add styles to all paragraphs.
- Strip out the html and header tags. Include
<body>to</body>below your styles only. - Give a class to all links. Links default to the system settings.
- Link default system settings may be a different font/size than your email text.
Example
<style>
p .email {
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
color: #666666;
}
</style>
<body>
<p class="email">This is an example.</p>
<p class="email">This is a new paragraph with the same css class T</p>
</body>