通过单击邮件正文中的电子邮件 ID 在 Outlook 中添加新的邮件 ID
我想生成一个邮件正文,在其中创建一个链接,用户单击该链接并添加新联系人 Outlook 弹出窗口将在客户端屏幕中打开。
这怎么办?
I want to generate a mail body in which i want to make a link, on which user clicks and add new contact outlook popup opens into the client screen.
How this can be done??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是 vCard 的发明目的。创建 vCard 文件(从 Outlook 或使用第三方应用程序),并将其在线托管在某个网络空间上。或者,如果需要,您可以创建一个动态生成 vCard 的网页。只需将 vCard URL 的超链接添加到电子邮件正文即可。
单击 URL 后,Outlook 将打开 vCard 中的内容作为新的 Outlook 联系人。
也就是说,如果 Outlook 未设置为阻止 URL,在这种情况下,您最好将 vCard 作为附件发送。 Outlook 签名可以设置以包含 vCard。
This is what vCard was invented for. Create a vCard file (from Outlook or using a third party application), and host it online on some webspace. Or, if needed, you can create a webpage that generates the vCard dynamically. Simply add a hyperlink to the vCard URL to the email message body.
Upon clicking upon the URL, Outlook will open up the contents from the vCard as a new Outlook contact.
That is, if Outlook isn't setup to block URLs, in which case you'd be better off sending the vCard as an attachment. Outlook signatures can be setup to contain a vCard.
恐怕这很可能是不可能的。在电子邮件客户端中,脚本通常是禁忌。
在使用 IE 特定脚本(在 VBScript 中,通过 COM 或其他方式连接到 Outlook)的网站内,这可能是可能的,但安全设置无论如何都会阻止它对绝大多数用户起作用。
I'm afraid this will most likely turn out to be impossible. Scripting is usually taboo in E-Mail clients.
This may be possible from within a web site using IE specific scripting (in VBScript, connecting to Outlook via COM or something), but security settings would block that from working for the vast majority of users anyway.