Outlook 中外出助理的预设回复

发布于 2024-12-17 17:42:55 字数 89 浏览 2 评论 0原文

我的公司希望员工可以选择从预先设置的消息中选择发送给不在办公室的助理,而不是让他们自己输入消息。

我想不出一种简单的方法来实现这一点。有什么建议吗?

My company would like employees to have an option of choosing from pre-set messages for their out of office assistant instead of letting them type their own.

I can't see to figure out an easy way to accomplish this. Any suggestions?

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

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

发布评论

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

评论(2

情绪失控 2024-12-24 17:42:55

我不明白这怎么可能(我很想听听其他情况)。您只需向每位员工提供他们需要使用的文本,他们会将其粘贴到 OOO 框中。他们如何存储该信息取决于他们 - 根据 Outlook 版本,您可以创建 OOO 签名或快速部分。

I don't see how this is possible (I would love to hear otherwise). You would simply need to provide each employee with the text they need to use, which they would paste into the OOO box. How they store that information is up to them -- depending on the Outlook version, you could create an OOO signature or a Quick Part.

谈情不如逗狗 2024-12-24 17:42:55

您可以创建 COM 加载项并通过单击按钮调用您自己的表单。该表单可以具有任何自定义 UI,然后您可以通过编程方式操作 OOF 规则。

Outlook 对象模型不提供操作 OOF 设置的直接方法。 来执行此操作

  1. 您可以直接使用 Folder.GetStorage 和 get/set 来

    访问 OOF 模板消息 ("IPM.Note.Rules.OofTemplate.Microsoft") PR_STORE_OFFLINE 属性(DASL 名称 “http://schemas.microsoft.com/mapi/proptag/0x6632000B”)使用Store.PropertyAccessor。您将无法设置 HTML OOF 模板或对内部/外部发件人有不同的回复,您需要 EWS。

  2. 使用 EWS(例如,请参阅 http://msdn.microsoft.com/en-us/library/exchange/hh532556(v=exchg.80).aspx)

  3. 使用 救赎(我是其作者)及其RDOOutOfOfficeAssistant 对象。

You can create a COM add-in and invoke your own form on a button click. That form can have any custom UI, and you can then manipulate the OOF rules programmatically.

Outlook Object Model does not provide a direct way to manipulate OOF settings. You can do that using either

  1. Access the OOF template message ("IPM.Note.Rules.OofTemplate.Microsoft") directly using Folder.GetStorage and get/set the PR_STORE_OFFLINE property (DASL name "http://schemas.microsoft.com/mapi/proptag/0x6632000B") using Store.PropertyAccessor. You will not be able to set the HTML OOF template or have different replies for inside/outside senders, you need EWS for that.

  2. Use EWS (see for example http://msdn.microsoft.com/en-us/library/exchange/hh532556(v=exchg.80).aspx)

  3. Use Redemption (I am its author) and its RDOOutOfOfficeAssistant object.

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