I want to generate graphs in SVG, and email an HTML page with those graphs embedded in it (not stored on a server and shown with linked images).
I've tried directly embedding the SVG, using the Object element, and serializing and URI encoding the SVG and specifying the whole string as a background image on a div. Nothing seems to display in Outlook 2013. Any ideas?
SVG is not supported in many email clients. The best guide I’ve seen is on Style Campaign. It’s a short read that I vouch for (Anna is super smart!).
TL;DR: A variety of technique will work in iOS mail clients and (amazingly) Blackberry. But Android, Outlook, and pretty much every desktop webmail email SVG does not support SVG and requires a fallback.
Update: "Microsoft Word, PowerPoint, Outlook, and Excel for Office 365 on Windows, Mac, Android and Windows Mobile support inserting and editing scalable vector graphics (.SVG) files in your documents, presentations, emails, and workbooks." (Edit SVG images in Microsoft Office 365)
From the "Insert SVG files" section in the Insert icons in Microsoft Office guide
An example
Needed to convert our non-profit's logo into SVG to make it look right, so
looked up an online tool (by googling "png to svg" in my case)
The site generated it, but wouldn't let me it download if I won't register.
Opened the SVG image up in the developer console (Chrome: right click on the image and select "Inspect")
copy the entire
<svg>
tag into a simple text file and save it with.svg
extension (from this SO thread).In Outlook, "Go to Insert > Pictures > Picture from file to insert your SVG images."