没有邮箱的Exchange中继

时间:2013-03-02 06:48:13

标签: c# email smtp exchange-server

我正在处理转发消息。 我的服务已由本地系统帐户运行,该帐户没有邮箱,因为邮箱不可用而收到错误消息。然后我使用我的帐户运行该服务,该帐户已启用邮箱并发送邮件。以下是代码

  MailMessage mailMessage = new System.Net.Mail.MailMessage();
  mailMessage.To.Add(mailId);
  mailMessage.From = new System.Net.Mail.MailAddress("administrator@xyz.com");
  mailMessage.Subject = mailSubject;
  mailMessage.Body = mailBody;
  SmtpClient smtp = new SmtpClient("192.168.1.226", 25);
  smtp.Send(mailMessage);

是否可以通过使用本地系统帐户或未启用邮箱的帐户进行中继。

1 个答案:

答案 0 :(得分:0)