Outlook 中外出助理的预设回复
我的公司希望员工可以选择从预先设置的消息中选择发送给不在办公室的助理,而不是让他们自己输入消息。
我想不出一种简单的方法来实现这一点。有什么建议吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不明白这怎么可能(我很想听听其他情况)。您只需向每位员工提供他们需要使用的文本,他们会将其粘贴到 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.
您可以创建 COM 加载项并通过单击按钮调用您自己的表单。该表单可以具有任何自定义 UI,然后您可以通过编程方式操作 OOF 规则。
Outlook 对象模型不提供操作 OOF 设置的直接方法。 来执行此操作
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。使用 EWS(例如,请参阅 http://msdn.microsoft.com/en-us/library/exchange/hh532556(v=exchg.80).aspx)
使用 救赎(我是其作者)及其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
Access the OOF template message (
"IPM.Note.Rules.OofTemplate.Microsoft"
) directly usingFolder.GetStorage
and get/set thePR_STORE_OFFLINE
property (DASL name"http://schemas.microsoft.com/mapi/proptag/0x6632000B"
) usingStore.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.Use EWS (see for example http://msdn.microsoft.com/en-us/library/exchange/hh532556(v=exchg.80).aspx)
Use Redemption (I am its author) and its RDOOutOfOfficeAssistant object.