For bugs and problems please create a new issue here.
How to try out these email templates as quickly as possible.
- Go to HTMLemail.io and download the templates.
- Unzip
htmlemail.zip
. You should now have files that look like this. - Open up PutsMail and create a new test email. Enter your email as the recipient.
- Open up one of the inlined emails
alert-success-inlined.html
in your favorite editor. Copy and paste the code into PutsMail like this. - Check your inbox to see a preview of your email.
🎉
These emails come packaged with inlined CSS templates, embedded CSS templates and an external CSS stylesheet.
CSS stylesheets are great for ensuring all your emails are consistent as you can manage styles in one place.
However, before you send your HTML email, you need to inline the CSS as some email clients do not render CSS that is not inlined.
Option one is to use the templates that are already inlined, and continue to write any new styles inline. But as mentioned these are harder to work with as it is harder to maintain your styles.
Option two is to use an inline CSS tool. Copy and paste your email into our CSS inliner and it will inline the CSS for you.
Option three, you can rely on your ESP (email service provider) to do the work for you. For example, you can set Mailchimp to automatically inline CSS for you before sending your campaign.
These emails come packaged with retina ready image assets and some stock photography.
In order for these to work they need to be uploaded somewhere and available via the web. The src
then has to reference the full path of the image.
The good news is if you're using an ESP like Mailchimp, Campaign Monitor, Salesforce or any other marketing service, they will let you upload the images. If you're using an API service like Mailgun or Sendgrid you may have to upload the images yourself to your own CDN.
For example, I've uploaded my logo to a CDN. In the header here I would replace img/logo.png
with my logo's full CDN path.
<img src="img/logo.png">
<img src="http://1bb070fe7102b70b7b9b-8d9a58972604befd3cf8b483887bb2bb.r27.cf2.rackcdn.com/img/logo.png">
Mailchimp has great tools to make it easy for you to import HTML templates.
- Zip up your email template. You should include one html file, your
main.css
file and yourimg
folder. - Open up
Templates
, clickNew Template
and selectImport zip
. Select your zip file and give it a name. Screenshot. - If your zip file was set up right, that should be it. Now use Mailchimp's templating language and merge tags to customize your template.
Check out our blog for more setup tutorials.
- Added new ecommerce promotional template
- Added new RSS to email news template
- Added embedded CSS versions to the pack for each template
- Added a more bullet proof horizontal rule solution that works in Outlook
- Modified license changing "multi license" to "unlimited license"
- Removed
width: auto !important
from.container
style which was affecting Outlook when left as embedded CSS
- Added better support for ordered and unordered bullet lists
- Fixed a receipt table alignment issue in versions of Outlook by introducing a
receipt-container
element and class - wrap the receipt table with this container to ensure it is centered in Outlook - Updated the Instagram and Google Play store icons
- Removed
display: block;
from thecontainer
div as it was causing issues in Gmail for iPhone #2 - Added explicit styles for article heading links to stop default blue being used in Outlook
- Added an Outlook conditional statement to fix image rendering issues in Outlook 2013 120 DPI
- Updated the
license.txt
to help clarify some questions around licensing and reselling
Create a issue or email [email protected]