无法连接到远程服务器

本文关键字:服务器 连接 | 更新日期: 2023-09-27 18:24:09

我是C#的新手,正在尝试从我正在开发的桌面程序发送电子邮件。这是我正在使用的代码,但我一直收到以下错误:

System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
message.To.Add("thesma@gmail.com");
message.Subject = "This is the Subject line";
message.From = new System.Net.Mail.MailAddress("ideas@gmail.com");
message.Body = "This is the message body";
System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient("smtp.gmail.com",578);
smtp.EnableSsl = true;
smtp.Send(message);

我似乎不知道问题出在哪里…

无法连接到远程服务器

您需要设置Gmail 的凭据

var client = new SmtpClient("smtp.gmail.com", 587)
 {
    Credentials = new NetworkCredential("myusername@gmail.com", "mypwd"),
    EnableSsl = true
};
client.Send("myusername@gmail.com", "myusername@gmail.com", "test", "testbody");

最有可能丢失凭据:

smtp.Credentials = new System.Net.NetworkCredential("ideas@gmail.com", "password");

因此:

SmtpClient smtp = new SmtpClient("smtp.gmail.com", 587);
smtp.Credentials = new System.Net.NetworkCredential("ideas@gmail.com", "Password");
smtp.EnableSsl = true;
smtp.Send(message);

或者,您可以将这些东西(几乎所有)存储在app.config中,尽管我不确定您需要它的安全性,因为任何打开应用程序目录(和该文件)的用户都可以清楚地看到user/pass。为了完成:

<system.net>
  <mailSettings>
    <smtp from="ideas@gmail.com">
      <network host="smtp.gmail.com"
               enableSsl="true"
               userName="ideas@gmail.com"
               password="password"
               port="587" />
    </smtp>
  </mailSettings>
</system.net>

网络凭据非常重要,但有时我们需要检查端口587是否被阻止。

   SmtpClient client = new SmtpClient();
    client.Credentials = new System.Net.NetworkCredential("jorgesys@gmail.com", "whocaresdupe");
    client.Port = 587;
    client.Host = "smtp.gmail.com";
    client.EnableSsl = true;
    try
    {
        client.Send(mail);          
    } catch (Exception ex)
    {
       Page.RegisterStartupScript("UserMsg", "<script>alert('Successfully Send...');if(alert){ window.location='SendEmail.aspx';}</script>");
    }

我的公司使用McAfee中的设置阻止台式机/笔记本电脑发送电子邮件。检查"Windows事件"视图,查看是否有电子邮件被阻止的条目。