Outlook 加载项如何检测电子邮件是否由同一加载项发送?

发布于 2024-10-07 19:52:06 字数 186 浏览 0 评论 0原文

如何将“XYZ 1.2.3”(加载项名称/版本/等)添加到 Outlook 电子邮件中,以便如果收件人具有相同的加载项,则在收到时可以调用一些附加行为?我更愿意对普通用户默默地完成此任务(而不是通过附件)。我可以通过修改标题来做到这一点吗?如果是这样,是否会导致虚假垃圾邮件标记比例更高?

我在 Outlook/VS 2010 中使用 C#。

How can I add "XYZ 1.2.3" (add-in name/version/etc) to an Outlook email message so that if the recipient has the same add-in some additional behavior can be invoked when received? I'd prefer to accomplish this silently to the average user (not through an attachment). Can I do this by modifying the header? If so, would that cause a higher proportion of false spam flags?

I'm using C# with Outlook/VS 2010.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明月松间行 2024-10-14 19:52:06

假设用户允许 HTML,您可以附加一个 div:

<div id="XYZ 1.2.3"></div>

然后您的加载项可以在传入的电子邮件中查找此内容 - 用户不会看到它。

Assuming that the users are allowing HTML, You could append a div:

<div id="XYZ 1.2.3"></div>

Then your add-in could look for this in incoming emails - the user wouldn't see it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文