我刚刚安装了IIS,我想通过C#启用发送电子邮件。我不知道在IIS中需要配置什么。
我尝试了一些东西,但却发现了。我是ASP.net的初学者。
我使用的代码如下:
// create mail message object
MailMessage mail = new MailMessage();
mail.From = @"asaf.tobi@gmail.com";// put the from address here
mail.To = @"asaf.tobi@gmail.com"; // put to address here
mail.Subject = "test"; // put subject here
mail.Body = "test";// put body of email here
SmtpMail.SmtpServer = "localhost"; // put smtp server you will use here
// and then send the mail
答案 0 :(得分:0)
在IIS7下,您需要转到IIS管理器中的邮件设置。
查看http://technet.microsoft.com/en-us/library/cc772058(WS.10).aspx
简而言之
如果您需要安装邮件服务器,请查看http://learn.iis.net/page.aspx/751/configure-smtp-e-mail-in-iis-7/以获取详细信息。