“代表”发送邮件在交换服务器2010中
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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"