HTML: send image in mailto?body

Viewed 12497

I am used to setting the body and subject of an email with text with the mailto function, eg:

href="mailto:?body=Thanks!"

But is there a way to send an image in the body? Eg:

href="mailto:?body=<img src='http://www.example.com/image.jpg'>"

(obviously above doesn't work - it just adds the html as a string)

Any advice appreciated! Thanks!

2 Answers

What you are asking is not possible. mailto is limited to send texts and promotional msgs, so you cant attach an image with mailto.

Related