How to send mail with a Subject using a Mailto URL

2019-01-14 21:01发布

I need to make a Mailto link to my website which is suppose to contain either the product name or the product page URL in the subject section. How can I do it?
Exp: When you get an email through eBay about a product you are selling or buying, you automatically know what product that email is about by seeing the product name in the subject section.
How can i do this?

标签: html uri mailto
4条回答
Juvenile、少年°
2楼-- · 2019-01-14 21:33

This page [Link Dead] outlines the syntax of mailto URIs:

  • Address message to multiple recipients

    ,   (comma separating e-mail addresses)
    
  • Add entry in the "Subject" field

    subject=Subject Field Text
    
  • Add entry in the "Copy To" or "CC" field

    cc=id@internet.node
    
  • Add entry in the "Blind Copy To" or "BCC" field

    bcc=id@internet.node
    
  • Add entry in the "Body" field

    body=Your message here
    
    Within the body use "%0A" for a new line,
    use "%0A%0A" for a new line preceded by a blank line (paragraph),
    

What you are looking for is:

<a href="mailto:foo@bar.com?subject=This Is My Product">

Note, it's probably a good idea to URL encode the spaces with either a + or a %20:

<a href="mailto:foo@bar.com?subject=This+Is+My+Product">
查看更多
劳资没心,怎么记你
4楼-- · 2019-01-14 21:44
<a href="mailto:stefan.mai@example.com?subject=YourSubjectHere">Try This</a>

If you want something more advanced, you're going to have to code it from scratch (or use someone else's script). Try looking into PHP, ASP.NET, Ruby on Rails, etc.

查看更多
爱情/是我丢掉的垃圾
5楼-- · 2019-01-14 21:46

I've run into problems with this before when I didn't url encode the value, so I would suggest (using lc's example):

<a href="mailto:foo@bar.com?subject=This+Is+My+Product">

or

<a href="mailto:foo@bar.com?subject=This%20Is%20My%20Product">
查看更多
登录 后发表回答