Previous Topic

Next Topic

Book Contents

Book Index

Creating an HTML Template

An HTML tamplate can be created in any WYSIWYG editor like Dreamweaver or FrontPage, a text editor like Notepad or word processing package like MS Word. There are many resources on the internet with tip and hints about creating HTML email templates. Below are a few of these tips and some important warnings:

The Warnings First

  1. If you create the HTML template in MS Word then make sure when saving it that your select the Save as type: to be Web Page, Filtered (*.htm; *.html) This will strip out all the MS Office specific tags as these can interfere with the way the HTML email is viewed though an email client (eg. outlook)
  2. File paths for embedded objects such as images are considered to be relative to the directory, where the specified HTML file resides. ie). if you are using the HTML template "C:\Docs\file.html", and there is line reference to an image eg. <IMG SRC='images/pic.gif'>, SchoolPRO will search for the image file "C:\Docs\images\pic.gif". So it is important to move the images referenced in an HTML template with and relative to the original HTML template.
  3. All referenced images will be automatically embedded into the merged email by SchoolPRO, so make sure that all images are compressed and of a small size otherwise the resulting emails will be rather large.

Now the Tips

How to code HTML Email Newsletters from www.sitepoint.com by Tim Slavin. November 5th 2004

In This Section

How To Code HTML Email Newsletters