Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a html email and I've read a lot about how to do it. There is one piece of information I can't find. How should I declare the mime type? I tried with:

meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

but it doesn't work.

Later edit:
I am trying to set the content-type of the mail to text/html but I don't know how. All this when writing from a regular email client. I have to declare it in the mail body? Or in the mail header (if so, how do I o it?)?

share|improve this question
1  
What do you mean by "it doesn't work"? Do you get some error message? Do non-ANSI character look broken? Do your mail recipients see the HTML source instead of the rendered HTML? ... – Heinzi Nov 3 '09 at 9:35
1  
It displays as a plain text <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> – sica07 Nov 3 '09 at 10:11

1 Answer

up vote 8 down vote accepted

Are you trying to set the content-type declaration within the message header sent to the mail server? If so, you should set it this way, in a line itself:

Content-Type: text/html; charset=UTF-8
share|improve this answer
How can I do that, when I am in a normal mail client, as gmail,or yahoo? – sica07 Nov 3 '09 at 10:50
1  
You can't. I've never seen a webmail client that allows custom HTML input (and rarely seen a desktop client). – Quentin Nov 3 '09 at 10:53

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.