mail-service
Version:
A simple nodejs module to send rich html emails easily using angular templates and automatic image embedding.
27 lines (26 loc) • 971 B
HTML
<style>
.btn-primary tr td{
background-color: #e5e5e5;
}
</style>
<img src="header.jpg" width="600" />
<p>Hi {{name}},</p>
<p>Sometimes all you want is to send a simple HTML email with a basic design.</p>
<h1>Really simple HTML email template</h1>
<p>This is a really simple email template. Its sole purpose is to get you to click the button below.</p>
<h2>How do I use it?</h2>
<p>All the information you need is on GitHub.</p>
<p ng-repeat="i in items">{{i}}<p>
<!-- button -->
<table class="btn-primary" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<a href="https://github.com/leemunroe/html-email-template">View the source and instructions on GitHub</a>
</td>
</tr>
</table>
<!-- /button -->
<p>Feel free to use, copy, modify this email template as you wish.</p>
<p>Thanks, have a lovely day.</p>
<p><a href="http://twitter.com/leemunroe">Follow @leemunroe on Twitter</a></p>
<img src="footer.jpg" width="600"/>