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, and we have found this is the best way to avoid any conflict).
- Do not use background images, only background colors.
- Add styles to all paragraphs.
- Strip out the html and header tags – just include <body> to </body> below your styles.
- Give a class to all links, or they will default to the system settings, which may be a different font/size than your email text.
Example:
<style>
p .email {
.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.
</p>
</body>
Comments
0 comments
Please sign in to leave a comment.