How do you properly construct a mailto: link without the part.
mailto:[email protected]?
I dont want the address and just want whats in the parameters afterward to be filled in through the mailto.
How do you create a mailto: link without the (to) part
Yes you can
mailto:?body=tisbody&subject=thisbethesubject
<a href="mailto:?subject=yoursubjecthere&body=yourbodyhere">Share using Email</a>
You can use mailto in this way
<a href="mailto:[email protected]?subject=Subject&cc=CC&bcc=BCC&body=BODY">Clickme!</a>
The question specifically asked for it without the address, and that HTML is invalid. –
Hemlock
They only "invalid" part of the HTML is that your
&
should be &
although Mr. Dorward is right in saying you didn't actually answer the question posed. –
Phono © 2022 - 2024 — McMap. All rights reserved.