默认电子邮件处理程序不支持文件模板时如何创建电子邮件模板?


1

如何设置模板,以便当我双击它时,会打开一个包含预设地址,标题和正文的电子邮件处理程序?

如果安装了Outlook,此链接将提供解决方案。但是如果默认的电子邮件处理程序不支持模板文件,比如Mail of Windows 8呢?

Answers:


3

将以下内容保存在.html文件中:

<html>
<body>
<script>
window.onload = window.location.href = "mailto:MAILADDR1,MAILADDR2...?subject=ABC&body=XYZ";
</script>
</body>
</html>

替换MAILADDR1, MAILADDR2 ...为所需的预设电子邮件地址,用逗号分隔,ABC并带有所需的主题/标题,XYZ并带有所需的正文。

双击.html将打开默认浏览器,并自动默认电子邮件处理程序将打开预设地址,标题和正文

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.