“代表”发送邮件在交换服务器2010中

发布于 2024-10-11 11:56:23 字数 197 浏览 3 评论 0原文

我正在尝试使用 Exchange Server 2010 和 System.Net.Mail.SmtpClient 发送邮件。我已向用户授予所有邮箱的适当权限。但是,邮件发送失败(SendAsync方法没有任何异常)。相反,如果我授予邮箱的“代理发送”权限,则邮件发送会成功。是否可以在不使用 Exchange API 的情况下从 Exchange Server 发送“代表”邮件

I am trying to send a mail using Exchange Server 2010 and System.Net.Mail.SmtpClient.I have given appropriate permission to the user on all the mailboxes. However, the mail sending fails ( without any exception in SendAsync method ). Instead, if I give Send As permission on the mailboxes, the mail sending succeeds. Is it possible to send "on behalf of" mails from Exchange Server without using Exchange APIs

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

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

发布评论

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

评论(2

樱&纷飞 2024-10-18 11:56:23

MailMessage 类公开两个属性:From 和 Sender

将 Sender 设置为地址 1,将发件人设置为地址 2 将发送一封邮件,该邮件将读取为“地址 1 代表地址 2”

MailMessage class exposes two properties: From and Sender

Setting Sender to address1 and From to address2 will send a mail which will read as "address1 on behalf of address2"

尘曦 2024-10-18 11:56:23
MailMessage message = new MailMessage();

message.From = new MailAddress("[email protected]");
MailMessage message = new MailMessage();

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