0

I have successfully pre-poulated an email with a subject and body in plain text like so:

<a href="mailto:example@example.com?subject=test&body=message">Contact Us</a>

What I would like to do is have an image at the bottom of the email and was wondering if this was possible seeing as it's an encoded URL string.

I was thinking it might be possible encoding an <img> tag but gathered it would just appear as plain text.

If it is possible, could someone point me in the right direction.

Lodder
  • 19,758
  • 10
  • 59
  • 100

2 Answers2

1

Source: MailTo with HTML body

No. This is not possible at all.

Credit: Quentin

Community
  • 1
  • 1
gvee
  • 16,732
  • 35
  • 50
0

Not Possible

Possibles are: SUBJECT,CC,BCC,BODY

<a href="mailto:YourName@YourSite.com? cc=someone@YourSite.com&bcc=someoneElse@YourSite.com &subject=Shipping%20Information%20Request&body=Please%20tell%20me%20if%20my%20order%20has%20shipped!">Shipping Request</a>
Sridhar R
  • 20,190
  • 6
  • 38
  • 35