Also shows how to encoded image in the template, and how to make clickable image (which can't be made directly in Pocomail's styled editor).
1. This is a basic styled empty template created by Pocomail or Barca:
- Code: Select all
%account%:
%encoded%:
%html%
%body%
<html><head><meta name="Generator" content="PSI HTML/CSS Generator"/>
<style type="text/css"><!--
body{font-family:'Microsoft Sans Serif';font-size:10pt;font-color:'#000000';}
LI{display:list-item;margin:0.00in;}
p{display:block;margin:0.00in;}
--></style>
</head><BODY ><div> </div>
</BODY></html>
2. Add your account name (as listed in accounts list, from menu Tools > Accounts Setup) to first line. Add full path to the image file (if any) to be encoded to second line.
3. Say your html is something like this
- Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<a href="http://www.pocosystems.com"><img src="H:\Program Files\Barca2\Emoticons\02.gif"></a><br>
</body>
</html>
4. Combined html with template, including account name change and path to encoded image, shall result in this:
- Code: Select all
%account%:MyAccount
%encoded%:H:\Program Files\Barca2\Emoticons\02.gif
%html%
%body%
<html><head><meta name="Generator" content="PSI HTML/CSS Generator"/>
<style type="text/css"><!--
body{font-family:'Microsoft Sans Serif';font-size:10pt;font-color:'#000000';}
LI{display:list-item;margin:0.00in;}
p{display:block;margin:0.00in;}
--></style>
</head><BODY >
<div>
<a href="http://www.pocosystems.com"><img src="H:\Program Files\Barca2\Emoticons\02.gif"></a><br>
</div>
</BODY></html>
Save this in place of the original template file you created, or create a new template file manually in Templates directory in your Barca or Pocomail installation.
It's short but hopefully helpful.