如何使用一个mailto URL一个主题发送邮件?(How to send mail with a

2019-06-25 07:09发布

我需要做一个Mailto link到我的网站,这是假设既包含产品名称或产品页面URL subject section 。 我该怎么做?
经验:当你通过收到一封电子邮件, eBay你是销售产品或购买,你会自动知道是什么产品,电子邮件有关的主题部分看到产品名称。
我怎样才能做到这一点?

Answer 1:

<a href="mailto:example@foo.com?subject=hello world">Email Me!</a>

互联网档案:

  • 建立一个HTML的mailto形式没有后端脚本
  • HTML邮寄地址属性和技巧
  • HTML邮寄地址技巧和窍门
  • 邮寄地址语法

相关问题#1:

  • 避免邮寄地址烦恼?
  • 混淆网站上的电子邮件地址的最佳方式?
  • 有效的方法来隐藏垃圾邮件机器人的电子邮件
  • 什么是保护在收到反垃圾邮件插件网站的电子邮件某些方面?


Answer 2:

我的时候我没有URL编码值之前已经运行到这个问题,所以我会(使用LC的例子)建议:

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

要么

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


Answer 3:

这页[死的链接]概括的邮寄地址的URI语法:

  • 地址消息给多个收件人

     , (comma separating e-mail addresses) 
  • 添加条目中的“主题”字段

     subject=Subject Field Text 
  • 在添加条目“复制到”或“抄送”字段

     cc=id@internet.node 
  • 在“密件抄送”添加条目或“密件抄送”字段

     bcc=id@internet.node 
  • 添加条目中的“身体”场

     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), 

你要找的是:

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

请注意,它可能是一个好主意,网址编码与无论是空间+%20

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


Answer 4:

<a href="mailto:stefan.mai@example.com?subject=YourSubjectHere">Try This</a>

如果你想要的东西更先进的,你将不得不把它从头开始编写(或使用别人的脚本)。 尝试寻找到PHP,ASP.NET,Ruby on Rails的,等等。



文章来源: How to send mail with a Subject using a Mailto URL?
标签: html uri mailto