agnitas tag for charset?
Posted: Sat May 05, 2007 4:01 am
Hi,
imagine, you're writing a template. And your HTML-template looks like this:
So we're thinking of adding a meta-tag like this:
We might have found some silly mail-client software, which needs that meta-tag. (Actually, OpenEMM correctly specifies the charset in the header of the MIME-part so the meta-tag should be totally uncessary)
But of course - as a programmer - i don't want to statically bind the template to usage of iso-8859-1. I would rather like to replace iso-8859-1 by the current selected charset of the mailing.
Is this possible?
If not, i would like to suggest that.
imagine, you're writing a template. And your HTML-template looks like this:
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>foo bar</title>
</head>
<body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0">
foo bar
</body>
</html>
So we're thinking of adding a meta-tag like this:
Code: Select all
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
But of course - as a programmer - i don't want to statically bind the template to usage of iso-8859-1. I would rather like to replace iso-8859-1 by the current selected charset of the mailing.
Is this possible?
If not, i would like to suggest that.