您可以使用 mailto 预填写电子邮件的部分内容吗?
Can you pre-fill parts of an email using mailto?
我知道您可以使用 mailto:
添加主题行或 CC/BCC 其他人,但是有没有办法向电子邮件添加一些正文或签名行?
例如:如果您想在电子邮件末尾添加一行内容:
"Mailed from yoursite.com"
这样您就可以知道他们使用了您网站上的 link。这可以不使用表单或脚本吗?
如何在没有 PHP(或等效)的情况下向 mailto 添加签名?
虽然您的回答有点含糊,但您可以尝试这样的方法,在顶部写一些东西,然后有几个回车符 returns (%0D
),然后是签名 Mailed from yoursite.com
。 %20
可用于确保浏览器正确显示空格。
<a href="mailto:someone@example.com?subject=Hello%20there&body=Body%20stuff%20goes%20here.%0D%0DMailed%20from%20yoursite.com">Send Mail</a>
你可以看看this w3 schools link or this discussion (as mentioned by Obsidian Age)。
我知道您可以使用 mailto:
添加主题行或 CC/BCC 其他人,但是有没有办法向电子邮件添加一些正文或签名行?
例如:如果您想在电子邮件末尾添加一行内容:
"Mailed from yoursite.com"
这样您就可以知道他们使用了您网站上的 link。这可以不使用表单或脚本吗?
如何在没有 PHP(或等效)的情况下向 mailto 添加签名?
虽然您的回答有点含糊,但您可以尝试这样的方法,在顶部写一些东西,然后有几个回车符 returns (%0D
),然后是签名 Mailed from yoursite.com
。 %20
可用于确保浏览器正确显示空格。
<a href="mailto:someone@example.com?subject=Hello%20there&body=Body%20stuff%20goes%20here.%0D%0DMailed%20from%20yoursite.com">Send Mail</a>
你可以看看this w3 schools link or this discussion (as mentioned by Obsidian Age)。