How do you create a mailto: link without the (to)

2019-03-09 14:39发布

问题:

How do you properly construct a mailto: link without the part. mailto:someaddress@example.com? I dont want the address and just want whats in the parameters afterward to be filled in through the mailto.

回答1:

Yes you can

mailto:?body=tisbody&subject=thisbethesubject


回答2:

Did you mean

<a href="mailto:"></a>


回答3:

<a href="mailto:?subject=yoursubjecthere&amp;body=yourbodyhere">Share using Email</a>


回答4:

You can use mailto in this way

<a href="mailto:user@user.com?subject=Subject&amp;cc=CC&amp;bcc=BCC&amp;body=BODY">Clickme!</a>


标签: uri mailto