-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTML content type text replies not displaying in Read Email. #76
Comments
Update: iOS Mail app displays the reply message content hiding in the |
Could you send an email like this to me at [email protected] ? I'd like to see the raw message and so figure out why Usermin isn't parsing it properly.. |
Sent! |
Got it, thanks! I'm not sure how to handle this case, since it seems like they are completely off-spec by using the tag. What mail client is sending these messages? It looks like some ticket system.. |
I don't know which mail client is sending these messages, I could ask, however, the email renders readable in iPhone iOS Apple Mail client on the iPhone, this tells us the Usermin rendering algorithm isn't doing as much as it should to more closely follow all the important render steps used by such popular email reading apps as iOS Apple Mail. I searched and found a few decent articles about how and why webmail (in particular Gmail) has decided they must filter and rearrange the |
This has happened on more than one incoming Reply messages. Sent an email from Usermin with the default
text/plain
content. The recipient replies withtext/html
. Their reply message is HTML and appears empty, you see only the original message, wrapped in anhtml
box by their email client, but theirtext/html
message reply is not showing. When you clickview raw message
, you see, in theirmultipart
text/html
, their reply text, withcss
, is located inside the<head>
tag! The original message which they replied to, is formatted inside a box in the<body>
tag. Seems to violate the HTML standards regarding do not put content intended to be seen by end users inside thehead
tag. Is this a standard format for HTML email messages? Should Usermin parse the text from the<head>
tag? Possibly related to #58The text was updated successfully, but these errors were encountered: