When I use Gmail to send an email, the email signature defined in the settings is automatically added at the bottom of the email. However, when I open a mailto
link to send a message, the email signature is not automatically added.
Here's the code:
<a href="mailto:[email protected]?subject=Thanks for your time&body=Hi,%0A%0AIt%20was%20a%20real%20pleasure%20speaking%20with%20you.%20Thank%20you%20for%20your%20time%20and%20we'll%20be%20in%20touch%20soon." target="_blank">test</a>
And there's a JSFiddle here. What do I need to do to make the email signature appear when I'm sending from a mailto link?
&body=
sets the whole body, and unless there is a way to signal that the signature should be added (e.g.&body=etc%20etc%20{signature}
) there is no way to acomplish this. – Cano