查找 Exchange DL 列表的实际电子邮件 ID

发布于 2024-12-11 09:38:40 字数 179 浏览 0 评论 0原文

我一直在开发使用 Exchange 2003 分发列表发送电子邮件的代码,但不幸的是我无法找到 DL 列表的确切电子邮件 ID,我想如果我们能够找到 DL 列表的电子邮件 ID,那么我们可以轻松地将电子邮件发送到整个DL。

那么有人知道如何找到 Exchagne 2003 DL 列表的确切电子邮件 ID,请帮助我。 提前致谢。

I have been developing code to send emails using Exchange 2003 Distrbution List, but unfortunately i could not able to find the exact email id of DL List, i think if we can able to find email id of DL list then we can easily send email to entire DL.

So can anybody know how to find exact email id of Exchagne 2003 DL list, please help me out..
Thanks in advance.

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

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

发布评论

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

评论(1

初懵 2024-12-18 09:38:40

我找到了查找 DL 电子邮件 id 的解决方案,即..

DirectorySearcher src = new DirectorySearcher("(anr=" + TestDL + ")");
foreach (SearchResult res in src.FindAll())
 {
 emailAddress = emailAddress + res.Properties["mail"][0].ToString() + ";" ;
 }

“FindAll”用于查找电子邮件 id,类似于 TestDL 变量电子邮件,也用于查找 DL 电子邮件 id。

例如,输出为 [email protected]

I have found the solution to find DL email id ie..

DirectorySearcher src = new DirectorySearcher("(anr=" + TestDL + ")");
foreach (SearchResult res in src.FindAll())
 {
 emailAddress = emailAddress + res.Properties["mail"][0].ToString() + ";" ;
 }

"FindAll" is used to find the email id similar to TestDL variable email and also it is used to find DL Email id.

For example output would be [email protected]

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