I'm making a web app in Django that sends user an image to their email.

The way that seems most attractive to me for sending the image is in the data:uri format.

However, I tested sending this email with a data:uri image in it to my GMail account, and the email shows, but without the image!

I know that Chrome and Firefox can both open data:uri images. So it's not a browser problem. But I don't see the data:uri image in GMail at all.

Does GMail not support data:uri images? Or possibly I'm sending them wrong?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Mail clients simply remove this from your post.

Here is a good reference of what can be supported:

http://www.campaignmonitor.com/css/

link|improve this answer
I don't see where this table talks about data:uri – Ram Rachum Dec 20 '11 at 18:52
It's not supported. Trust me. – Diodeus Dec 20 '11 at 18:54
What way would you recommend for sending images? Multipart, attached or external link? Or something else? – Ram Rachum Dec 20 '11 at 18:58
Only externally referenced images will work yoursite.com/images... – Diodeus Dec 20 '11 at 19:45
What's the problem with multipart? – Ram Rachum Dec 20 '11 at 19:53
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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