救赎 - 查找公用文件夹
使用兑换,我需要将草稿电子邮件放入特定的公共文件夹中。 我知道该文件夹的完整路径,但我不知道如何使用 RDO 到达那里。 例如。 文件夹路径是“\\公共文件夹\所有公共文件夹\XXXX\Drafts”
我正在使用Delphi2006和Exchange 2007但这应该不重要...
oSession := CreateOleObject('Redemption.RDOSession');
oSession.LogonExchangeMailbox('[email protected]','ServerName');
oStore := oSession.Stores.FindExchangePublicFoldersStore;
有关如何从这里获取的任何指示?
Using Redemption I need to put a draft email in a specific Public Folder. I know the full path of the folder but I can't work out how to get there using RDO. Eg. the folder path is "\\Public Folders\All Public Folders\XXXX\Drafts"
I'm using Delphi2006 and Exchange 2007 but that shouldn't matter...
oSession := CreateOleObject('Redemption.RDOSession');
oSession.LogonExchangeMailbox('[email protected]','ServerName');
oStore := oSession.Stores.FindExchangePublicFoldersStore;
Any pointers on how to get from here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用 oSession.GetFolderFromPath 即可。 您甚至不需要先找到 PF 商店。
有关文档,请参阅 http://dimastr.com/redemption/rdo/rdosession.htm
RDOSession
对象的。Simply use
oSession.GetFolderFromPath
. You don't even need to find the PF store first.See http://dimastr.com/redemption/rdo/rdosession.htm for documentation of the
RDOSession
object.