
Originally Posted by
ralph.m
It might depend on what email client you are viewing the email in, but many of them strip out styles in the head of your document. So you need to use
Code:
<span style="padding: 0 0 0 2em;">"Postage Meters Can Save You Money"</span>
for your styles to work in a majority of email clients.
Sorry, Ralph, but I'm not following you very well tonight. 
1.) You are saying to use Inline Styles like your Padding example, above, right?
So that means I cannot rely on my CSS Stylesheet, right?
2.) But how does that relate to HTML Tags??
Don't I want to still mark up my E-mail Body in HTML Tags like <p>??
Or do E-mail Clients ignore those?
It's up to you whether you use <p>s or <spans>. Obviously it's better HTML to use <p>s,
Forget we are talking about E-mail for a moment.
3.) If you had this copy, which s the better way to mark it up...
Choice #1:
HTML Code:
<p>Dear Debbie,</p>
<p>The user, "username4", has posted a new comment to the article:</p>
<p>"Consider Becoming an S-Corporation"</p>
<p>To view this article, click here</p>
<p>To view this comment, click here</p>
<p>Sincerely,</p>
<p>Customer Service</p>
or
Choice #2:
HTML Code:
<p>Dear Debbie,<br /><br />
The user, "username4", has posted a new comment to the article:<br />
<span style="padding: 0 0 0 2em;">"Consider Becoming an S-Corporation"</span><br /><br />
To view this article, click here<br /><br />
To view this comment, click here<br /><br />
Sincerely,<br /><br /><br />
Customer Service<p>
but they can be a pain to style in HTML email, so there is sometimes an argument for using spans, <br>s and so on.
4.) Again, I'm not following what E-mail Clients do to HTML Tags like <p>?
I know you said that they only support Inline Styles, but what about HTML Tags?? 
5.) Which are the pickiest...
Web-based e-mail like Yahoo and Gmail?
Or actual E-mail Clients like MS Outlook?
Thanks,
Debbie
Bookmarks