Poniżej zamieszczony został przykładowy kod szablonu. Deklaracje przy rozmiarze czcionki i rodzaju czcionki są konieczne dla nadpisania domyślnych ustawień edytora.
<body>
<head>
<style type="text/css">
body {
font-size: 12pt !important;
font-family: calibri, arial, sans-serif !important;
color: #000;
background: #fff;
padding: 4px;
}
table, td {
font-family: calibri, arial, sans-serif;
border-style: none;
padding: 0px;
margin: 0px;
}
td {
vertical-align: top;
}
img {
padding: 0px;
border: 0px;
}
.tmain {
width: 100%;
}
.tmain .leftCol {
width: 200px;
color: #999;
border-right: 1px solid #bbb;
}
.tmain .rightCol {
padding: 0px 12px;
}
.footer {
border-top: 1px solid #bbb;
margin-top: 12px;
padding-top: 12px;
}
.account {
color: #777;
}
.quoted {
padding: 0px 10px;
}
.quoted blockquote {
border: 2px none #3D8BFF;
border-style: none solid;
padding: 0px 10px;
margin: 0px;
}
</style>
</head>
<table class="tmain">
<tr>
<td class="leftCol">
<div class="company">
<img src="data:image/png;base64,iVBORw0KGgoAA......." />)<br>
Ready_
</div>
</td>
<td class="rightCol">
{text:h}
{if:footer}
<div class="footer account">
{footer:h}
</div>
{end:}
</td>
</tr>
</table>
{if:quoted}
<br><br>
<div class="quoted">
{quoted:h}
</div>
{end:}
</body>