小编典典

我可以使用 mailto: 设置电子邮件的主题/内容吗?

all

使用 mailto: 时是否可以设置电子邮件的主题/内容?


阅读 113

收藏
2022-02-28

共1个答案

小编典典

是的,使用 mailto 查看所有提示和技巧:http ://www.angelfire.com/dc/html-
webmaster/mailto.htm

邮件主题示例:

<a href="mailto:no-one@snai1mai1.com?subject=free chocolate">example</a>

邮件内容:

<a href="mailto:no-one@snai1mai1.com?subject=look at this website&body=Hi,I found this website and thought you might like it http://www.geocities.com/wowhtml/">tell a friend</a>

正如评论中提到的,两者都subject必须body正确转义。使用encodeURIComponent(subject)每个,而不是针对特定情况手动编码。

正如Hoody在评论中提到的,您可以通过在字符串中添加以下编码序列来添加换行符:

%0D%0A // one line break
2022-02-28