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 的“新邮件”对话框并从 ASP.Net 网页插入附件。
我正在尝试从 Intranet 运行它,并且我的台式机上确实有 Outlook,这是我打开页面的地方,这里的其他人也是如此。
我将不胜感激任何想法,帮助,教程。谢谢
可能你可以在 IE 中使用一些 ActiveX 对象来做到这一点,但是使用常规的 JS/HTML 你不能做这样的事情。从浏览器打开 Outlook 窗口的唯一方法是<a href="mailto:...."打开默认邮件程序(它可能是与 Outlook 不同的程序)。但这是非常有限的选择(正文大小有限,没有 html,没有附件等)
<a href="mailto:...."
假设这里最好的方法是从服务器发送电子邮件。您可以向用户询问电子邮件正文和收件人列表并将其发送到使用System.Net.Mail命名空间。
System.Net.Mail