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

前端 未结 4 2013
夕颜
夕颜 2021-02-01 11:27

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 afterwa

相关标签:
4条回答
  • 2021-02-01 12:06

    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>
    
    0 讨论(0)
  • 2021-02-01 12:09

    Did you mean

    <a href="mailto:"></a>
    
    0 讨论(0)
  • 2021-02-01 12:15
    <a href="mailto:?subject=yoursubjecthere&amp;body=yourbodyhere">Share using Email</a>
    
    0 讨论(0)
  • 2021-02-01 12:24

    Yes you can

    mailto:?body=tisbody&subject=thisbethesubject
    
    0 讨论(0)
提交回复
热议问题