Author Topic: Always send valid XHTML 1.0 emails  (Read 3006 times)

Blinkiz

  • Freshman
  • *
  • Posts: 24
    • View Profile
Always send valid XHTML 1.0 emails
« on: October 20, 2010, 06:06:56 am »
Hi there
I would like to see a perfect html email that is a valid XHTML 1.0 Strict format when sending. This way I will always know that the person I send the email to, will see it as I see it.

It's so little left to get valid XHTML code.
Adding this to all outgoing emails, will make the html part validate against http://validator.w3.org.

Code: [Select]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />
<title>Subject of the email</title>
</head>
Or XHTML 1.0 Transitional..

Please? :)