我正在研究框架 2。我想通过我的门户发送电子邮件。我访问了许多站点。从中我能够理解很多。这是我的代码。我已经创建了页面设计。什么是 smtpserver。这段代码给了我错误.
System.Web.HttpException:服务器拒绝发件人地址
MailMessage Msg = new MailMessage();
// Sender e-mail address.
Msg.From = txtFrom.Text;
// Recipient e-mail address.
Msg.To = txtTo.Text;
Msg.Subject = txtSubject.Text;
Msg.Body = txtBody.Text;
// your remote SMTP server IP.
SmtpMail.SmtpServer = "smtp.gmail.com";
SmtpMail.Send(Msg);
Msg = null;