Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从浏览器打开一个 Outlook 电子邮件窗口并使用一些 HTML 内容预填充它。我目前为此使用 ActiveX,但当然,这只适用于 IE。
有没有更好的选择?
您可以使用 mailto 并使用它设置主题/内容。
<a href="mailto:someone@somewhere.com?subject=This is the subject&body=This is the default content">Send mail</a>
您甚至可以使用 html,但您必须对其进行 url 编码,并且它的工作取决于电子邮件客户端。