我正在使用 IIS7 在 asp.net 中通过 C# 发送电子邮件。但我无法修复错误。
我什至无法向这条路径发送消息
C:\inetpub\mailroot\队列
这是我用过的最简单的代码
MailMessage m = new MailMessage();
m.From = TextBox1.Text;
m.To = TextBox2.Text;
m.Subject = TextBox3.Text;
m.Body = TextBox4.Text;
SmtpMail.SmtpServer = "localhost"; //your real server goes here
SmtpMail.Send(m);
注意:我手动创建了这个路径,是不是错了?还是应该自动创建?
请帮忙!