I want to include style sheet in the email body while sending an email with SMTP. Is it possible, as I don't want to give inline style to each and every html tag.
If i include class="sampleClass"
in any HTML tag then it is not appearing in the email view source, why?
How can I include internal style sheet in body, while sending email?
As this page says: http://css-tricks.com/using-css-in-html-emails-the-real-story/ you cannot link to an external style sheet, but you can add inline styles. so it looks like adding inline styles is a viable option.
Also, you cannot add styles to the head section, since some mail clients do not support it, again refer to http://css-tricks.com/using-css-in-html-emails-the-real-story/, so just concentrate on adding inline styles.