I'm trying to send some html in a generated email that looks something like this:

X-Sender: XXXX@xxxx.com
X-Receiver: XXXX@xxxx.com
MIME-Version: 1.0
From: XXXXXXX@xxxx.com
To: XXXXX@xxxx.com
Date: 9 Dec 2010 10:55:52 -0800
Subject: Test email
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: quoted-printable

<p>Click on the link below</p><p><a href="http://www.mysite.com">Click Here</a></p>

The email sends but for some reason the link tag doesn't show up. I'm thinking it has something to do with the the content type. Any ideas? Thanks in advance.

link|improve this question

feedback

1 Answer

You could try this Content-Type: "Content-Type: text/html; charset=ISO-8859-1\r\n"

It should allow your HTML to be handled properly.

link|improve this answer
nope... thanks for the suggestion though. – jwerre Dec 9 '10 at 20:23
you might need to format your html properly. if that's all you got then it would expect the html, head, and body tags which are missing. Just because it rendered part doesn't mean it was formatted properly. – phillip Dec 9 '10 at 20:30
I'm looking at my template and I don't have Content-Transfer-Encoding in mine. Not sure if it is necessary. – phillip Dec 9 '10 at 20:32
what's up with the -1? – phillip Feb 15 '11 at 18:21
feedback

Your Answer

 
or
required, but never shown

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