HTML Email Styling

When creating HTML email, how do you specify the appearance of a font, for example? Is there a better way than using inline CSS? I use cfmailto send email.

+5
source share
2 answers

You can style it in blocks <style>in the chapter section, but the best / consistent way to style something in HTML emails is that, unfortunately, it does it inline. If you feel lazy, you can use http://premailer.dialect.ca/ to move everything inline for you.

+7
source