无法通过localhost发送电子邮件

时间:2015-10-26 16:57:07

标签: c# iis-7

我收到以下错误:

 Failure sending mail

和内部异常是

 Unable to connect to the remote server

在C#中

 MailMessage mail = new MailMessage("you@yourcompany.com", "user@hotmail.com","Newsletter", "This is a test mail");
 SmtpClient client = new SmtpClient("localhost");
 client.Send(mail);

这是我在IIS 7中的本地smtp电子邮件设置。

enter image description here

还安装了smtp服务器工具

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试设置"电子邮件地址" IIS SMTP设置中的字段,表示您正在使用的FROM地址。

SOURCE