I have a PHP script that checks Gmail for new mail, then depending on the conditions of the email, will reply to the email with some information.

My question is when replying to an HTML email, what is the best way to deal with the HTML? Should I find the position of where the tag ends and then just insert my HTML code there after that?

I'm curious how an email client handles this when I hit Reply.

Thanks.

link|improve this question

It depends on the client, sadly. I've had mixed results with Evolution, Thunderbird, Postler, etc. – Blender Dec 8 '11 at 4:46
do you want / need the HTML from the original email? you could always run a strip_tags on it. – Brian Glaz Dec 8 '11 at 4:54
I'd like to keep the original email as well. Best way I can tell to do this is find the start & end position of the <body> tag and replace my content right after that. – Slowfib Dec 8 '11 at 5:57
feedback

2 Answers

up vote 0 down vote accepted

I would check if the email contains a plain-text version of the email and reply to that.

Outside of that -- ignore "proper" html. Find the beginning of their email (be it <html> or <p>) Add your reply followed by <hr /><strong>Original Message...etc before that and be done.

Good luck

link|improve this answer
Yea that's what I figured would be the best way. Though it should be the beginning of the <body> not <html> right? – Slowfib Dec 9 '11 at 18:28
Regardless of the first tag -- You don't know whether their email client starts emails from <html> or not. It might not specify doctype, or html, or body tags at all. – Mikhail Dec 12 '11 at 16:33
feedback

just want to share some of the problems that i had encountered with HTML email and have a few things that i always keep in mind:

  • You'll need to put your css stylesheet inside the the body tag because Gmail ignore whatever outside the body tag.
  • Make sure your CSS works in various email client platform.
  • If your email height is more than 1497px (not 100% sure with the number, i've seen this in some article before) or else it will have unknown space gap in Outlook.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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