Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my email views, I usually just do something like...

<dl>
   <dt>Name</dt>
   <dd>Value</dd>
</dl>

Should I be doing it like this?

<html>
  <head></head>
  <body>
    <dl>
       <dt>Name</dt>
       <dd>Value</dd>
    </dl>
  </body>
</html>

In other words, like I was marking up a standalone document?

I guess I can safely assume any web based email client will strip it out?

What is the right way?

share|improve this question

4 Answers

Whether or not you include the html/head/body tags is entirely irrelevant — they are always optional and will not affect the rendering of the document in any way.

What matters most is whether quirks mode is on or not. Unfortunately, you can’t control that in a webmail setting. Tables and inline styles are your friends. Your best bet is to test in as many webmail and desktop clients as you can.

share|improve this answer

The right way is to follow the standard. You can validate your HTML page here.

Your mail client should follow it and should throw away what's not supported or what's insecure like javascript.

share|improve this answer
16  
-1 The right way is to test it in the relevant clients. While mail clients should follow the standards, virtually none of them do. – Blowski Jan 6 '12 at 17:50
6  
That would be the effective way, he asked for the right :) – mschonaker Jan 6 '12 at 19:19
4  
mschonaker is correct. If everybody starts following the standards, then the usage will be... well... standardized. Otherwise, all developers have to implement hacks for the flavor of the day (thinking of you, IE6!). The RIGHT way is to follow the standards. – cjcela Nov 8 '12 at 18:02

Depends entirely on the email client that receives it. In my experience, most email clients that will interpret HTML don't care if you have full body/head/html tags, etc. In fact you don't even need those tags for most browsers. You need to have the head tags to include style/title, etc. Otherwise they are not really necessary, per se. I've never seen them to be necessary.

share|improve this answer
2  
The html/head/body tags are always optional. – Josh Lee Oct 11 '10 at 2:39

I don't think there is a right way but trying to make the email viewable in as many email readers as posible.

I usually check the emails in Thunderbird, because Outlook forgives more.

In Thunderbird this is the HTML code for an email (i have an extension that shows the html)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor="#ffffff" text="#000000">
        This is the body text<br>
<div class="moz-signature"><i><br>
<br>
Regards<br>
Alex<br>
</i></div>
</body>
</html>

BTW, i use plain text email for all my web forms every time I can. I had many issues with blackberry email using html+plain text emails.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.