以下是我使用smtp服务器发送电子邮件的编码。但由于未能发送,它会引发一个smtpexception。
我在我的网站上使用Windows网络服务器。
protected void btnSubmit_Click(object sender, EventArgs e)
{
try
{
MailMessage Msg = new MailMessage();
// Sender e-mail address.
Msg.From = new MailAddress(txtEmail.Text);
// Recipient e-mail address.
Msg.To.Add("info@dhuvara.com");
Msg.Subject = txtSubject.Text;
Msg.Body = txtMessage.Text;
Msg.IsBodyHtml = true;
// your remote SMTP server IP.
SmtpClient smtp = new SmtpClient();
smtp.Host = "mail.dhuvara.com";
smtp.Port = 25;
Msg.Priority = MailPriority.Normal;
smtp.Credentials = new System.Net.NetworkCredential("info@dhuvara.com", "SolaiMail");
smtp.EnableSsl = true;
smtp.Send(Msg);
//Msg = null;
lbltxt.Text = "Thanks for Contact us";
// Clear the textbox valuess
txtName.Text = "";
txtSubject.Text = "";
txtMessage.Text = "";
txtEmail.Text = "";
}
catch (Exception ex)
{
Console.WriteLine("{0} Exception caught.", ex);
}
}
答案 0 :(得分:1)
您需要添加smtp.UseDefaultCredentials = false;
需要在设置凭据之前。
答案 1 :(得分:0)
尝试设置EnableSSL = false;
这可能是问题 - 我以前遇到过这个问题。
答案 2 :(得分:0)
我怀疑mail.dhuvara.com是否是正确的主机连接。 该主机的DNS查询告诉我,它是go.domains.live.com的CNAME,go.domains.live.com是domains.live.com的CNAME,所以我假设你使用windows live来托管你的域名。也许您应该尝试使用smtp.live.com作为邮件服务器。