Hi
I want to send an html email.
To do this do I start off the email with a doctype ?
e.g.
Is the doctype I used OK or is their a special one for emails ?
Should I use all that meta tag stuff of is it unnecessary ?
Would appreciate some help on this as I am new to this
Thanks
I want to send an html email.
To do this do I start off the email with a doctype ?
e.g.
PHP Code:
$message = "
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> a title</title>
<meta name="keywords" content="some keywords">
<meta name="description" content=" a description">
<meta name="allow-search" content="yes">
<meta name="audience" content="all">
<meta name="revisit-after" content="4 Days">
<meta name="robots" content="all, index, follow">
<meta name="copyright" content="mysite.com">
<meta name="Rating" content="General">
<meta name="Language" content="en">
<meta name="distribution" content="global">
<meta name="classification" content="internet marketing">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Script-Type" content="text/javascript">
</head>
<body>".$message."
</body>
</html>
";
Should I use all that meta tag stuff of is it unnecessary ?
Would appreciate some help on this as I am new to this

Thanks

Comment