我正在尝试使用我的asp.net应用程序发送电子邮件。这是我的代码:
string smtpServer = ConfigurationManager.AppSettings["smtpServer"].ToString();
int smtpPort = int.Parse(ConfigurationManager.AppSettings["smtpPort"]);
string smtpUser;
string smtpPwd;
if (administrativo)
{
smtpUser = ConfigurationManager.AppSettings["smtpUser"].ToString();
smtpPwd = ConfigurationManager.AppSettings["smtpPwd"].ToString();
//smtpUser = "licitacoeslic@gmail.com";
//smtpPwd = "liclicitacoes";
}
else
{
smtpUser = ConfigurationManager.AppSettings["smtpNoReplyUser"].ToString();
smtpPwd = ConfigurationManager.AppSettings["smtpNoReplyPwd"].ToString();
//smtpUser = "licitacoeslic@gmail.com";
//smtpPwd = "liclicitacoes";
}
bool smtpSslEnabled = bool.Parse(ConfigurationManager.AppSettings["smtpSslEnabled"]);
SmtpClient smtpClient = new SmtpClient();
smtpClient.Host = smtpServer;
if (smtpPort > 0)
smtpClient.Port = smtpPort;
if (smtpUser != String.Empty)
smtpClient.Credentials = new NetworkCredential(smtpUser, smtpPwd);
smtpClient.EnableSsl = smtpSslEnabled;
//transforma a mensagem de e-mail em html para habilitar o uso do logo
MailMessage mm = new MailMessage(de, para, assunto, texto);
mm.IsBodyHtml = true;
smtpClient.Send(mm);
我已经尝试了465和587作为端口号,交换了我的凭据,因为显然,我的web.config中的旧版本不再存在,通过cmd ping smtp.gmail.com并且它正常工作。编辑:您似乎需要使用此方法的Gmail帐户。是的,我正在使用一个。
有趣的是:同样的代码,昨天工作。这里有什么我想念的吗?
编辑:这是经过一些测试后发生的事情:
1)我试图使用我的私人Gmail帐户来查看是否会抛出相同的超时异常。有效。我创建的gmail帐户是凭据的一部分不起作用。
2)现在,当我试图查看我创建的Gmail帐户是否有效时,我得到了这个例外:
5.4.5超出每日发送配额。 n4sm29019478yhc.13 - gsmtp
那么,什么?我每天可以发送的电子邮件数量有限吗?
答案 0 :(得分:1)
我试过这个并且有效
var client = new SmtpClient("smtp.gmail.com", 587)
{
UseDefaultCredentials = false,
EnableSsl = true,
Timeout = 20000,
Credentials = new NetworkCredential("someguy", "password") // gmailid is someguy@gmail.com
};
可能有些配置设置不正确
答案 1 :(得分:0)
那么,什么?我每天可以发送的电子邮件数量有限吗?
关于这一点,Gmail有垃圾邮件保护(这通常很好)。发送一些电子邮件后,Gmail要求您登录Gmail帐户(网站),该网站会要求您输入验证码。发送验证码后,您可以继续发送电子邮件,但您仍然有限制每天发送电子邮件。