小编典典

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

html

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


阅读 517

收藏
2020-05-10

共1个答案

小编典典

mailto主题示例:

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

mailto内容:

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

正如评论中提到的那样subjectbody必须适当地对和进行转义。encodeURIComponent(subject)在每种情况下使用,而不是为特定情况手工编码。

可以通过在字符串中添加以下编码序列来添加换行符:

%0D%0A // one line break
2020-05-10