如何使用 Mailto URL 发送带有主题的邮件?
我需要创建一个指向我的网站的 Mailto 链接
,该链接应该在主题部分
中包含产品名称或产品页面 URL。 我该怎么做?
说明:当您通过 eBay
收到有关您正在销售或购买的产品的电子邮件时,您可以通过查看主题部分中的产品名称自动知道该电子邮件是关于什么产品的。
我怎样才能做到这一点?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
互联网档案:
相关 Stackoverflow 问题:
Internet Archive:
Related Stackoverflow Questions:
当我没有对值进行 url 编码时,我之前遇到过这个问题,所以我建议(使用 lc 的示例):
或
I've run into problems with this before when I didn't url encode the value, so I would suggest (using lc's example):
or
此页面 [链接失效] 概述了 mailto URI 的语法:
将邮件地址发送给多个收件人
在“主题”字段中添加条目
在“复制到”或“抄送”字段中添加条目
在“密送至”或“密件抄送”字段中添加条目
在“正文”字段中添加条目
您要查找的是:
注意,使用
+
或对空格进行 URL 编码可能是个好主意>%20
:This page [Link Dead] outlines the syntax of mailto URIs:
Address message to multiple recipients
Add entry in the "Subject" field
Add entry in the "Copy To" or "CC" field
Add entry in the "Blind Copy To" or "BCC" field
Add entry in the "Body" field
What you are looking for is:
Note, it's probably a good idea to URL encode the spaces with either a
+
or a%20
:如果您想要更高级的东西,您将不得不从头开始编码(或使用其他人的脚本)。 尝试研究 PHP、ASP.NET、Ruby on Rails 等。
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.
尝试使用此代码设置主题、正文、抄送、密件抄送
Try this code to set subject, body, cc, bcc