如何使用 Mailto URL 发送带有主题的邮件?

发布于 2024-07-26 06:17:57 字数 200 浏览 9 评论 0原文

我需要创建一个指向我的网站的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

雨轻弹 2024-08-02 06:17:57

当我没有对值进行 url 编码时,我之前遇到过这个问题,所以我建议(使用 lc 的示例):

<a href="mailto:[email protected]?subject=This+Is+My+Product">

<a href="mailto:[email protected]?subject=This%20Is%20My%20Product">

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:[email protected]?subject=This+Is+My+Product">

or

<a href="mailto:[email protected]?subject=This%20Is%20My%20Product">
北笙凉宸 2024-08-02 06:17:57

此页面 [链接失效] 概述了 mailto URI 的语法:

  • 将邮件地址发送给多个收件人

    ,(逗号分隔电子邮件地址) 
      
  • 在“主题”字段中添加条目

    subject=主题字段文本 
      
  • 在“复制到”或“抄送”字段中添加条目

    [电子邮件受保护] 
      
  • 在“密送至”或“密件抄送”字段中添加条目

    [电子邮件受保护] 
      
  • 在“正文”字段中添加条目

    body=您的留言 
    
      在正文中使用“%0A”作为新行, 
      使用“%0A%0A”作为新行,前面有一个空行(段落), 
      

您要查找的是:

<a href="mailto:[email protected]?subject=This Is My Product">

注意,使用 +对空格进行 URL 编码可能是个好主意>%20:

<a href="mailto:[email protected]?subject=This+Is+My+Product">

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

    [email protected]
    
  • Add entry in the "Blind Copy To" or "BCC" field

    [email protected]
    
  • 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:[email protected]?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:[email protected]?subject=This+Is+My+Product">
提笔落墨 2024-08-02 06:17:57
<a href="mailto:[email protected]?subject=YourSubjectHere">Try This</a>

如果您想要更高级的东西,您将不得不从头开始编码(或使用其他人的脚本)。 尝试研究 PHP、ASP.NET、Ruby on Rails 等。

<a href="mailto:[email protected]?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.

许你一世情深 2024-08-02 06:17:57

尝试使用此代码设置主题、正文、抄送、密件抄送

<p>HI <a href = "mailto:[email protected]?subject=Hello&body= Have a good day!&cc=add here cc email&bcc=add here bcc email">venky!</a></p>

Try this code to set subject, body, cc, bcc

<p>HI <a href = "mailto:[email protected]?subject=Hello&body= Have a good day!&cc=add here cc email&bcc=add here bcc email">venky!</a></p>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文