我可以使用mailto:设置电子邮件的主题/内容吗?
使用mailto:时是否可以设置电子邮件的主题/内容?
回答:
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>
正如评论中提到的那样subject
,body
必须适当地对和进行转义。encodeURIComponent(subject)
在每种情况下使用,而不是为特定情况手工编码。
可以通过在字符串中添加以下编码序列来添加换行符:
%0D%0A // one line break
以上是 我可以使用mailto:设置电子邮件的主题/内容吗? 的全部内容, 来源链接: utcz.com/qa/412895.html