如何使用 WebDAV 代码解析 Exchange Server 2003 的电子邮件地址
我开发了一个应用程序,用于使用 Exchange Server 2003 发送/接收邮件,因此在电子邮件输入框中,如果我们输入任何用户的名字并单击某个快捷键,我想解析该电子邮件地址。
例如,
- 在输入框中键入“Pardha”
- ,然后按 cltl +r(快捷键),
- 它将在 Exchange Server 2003 中搜索名称以“Pardha”开头的名称,并且它应该将我的电子邮件 ID 解析为
[电子邮件受保护]
- 如果有多个用户具有相同的名称,则应显示“选择电子邮件 ID”对话框以选择所需的电子邮件。
I have developed one application which used to send/receive mails using Exchange Server 2003, so in the email input box, if we enter any user's first name and click on some short cut key, I want to resolve that email address.
For example,
- Type "Pardha" in the input box
- Press cltl +r (short cut key)
- it should search in Exchange Server 2003 whose names starts with "Pardha", and it should resolve my emaild id as
[email protected]
- If there are multiple users having the same name, then it should display the "select email id" dialog box to select the required email.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Exchange 是搜索域用户的错误位置。在 Active Directory 上执行 ANR 搜索。
请参阅 http://msdn.microsoft.com/en -us/library/ms180837(v=vs.80).aspx 示例代码。
Exchange is the wrong place to search for users of the domain. Perform an ANR search on the Active Directory.
See http://msdn.microsoft.com/en-us/library/ms180837(v=vs.80).aspx for sample code.