如何通过代理编程方式通过Gmail发送电子邮件

时间:2013-10-18 09:55:47

标签: c# .net email proxy

我的一个Windows应用程序需要使用POP和SMTP协议发送和接收电子邮件。我们的电子邮件服务器将在公司外部。因此,模拟这种情况目前我们使用Gmail帐户发送和接收电子邮件。我知道它需要代理详细信息才能连接到通过代理服务器之外的服务器。我尝试在app.config文件中配置代理详细信息。但它不起作用。电子邮件发送Failure sending email时会抛出异常。有人知道如何通过代理连接到外部电子邮件服务器?

我的代码

 var fromAddress = new MailAddress("nayana@gmail.com", "From Name");
      var toAddress = new MailAddress("nayana@gmail.com", "To Name");
      const string fromPassword = "nayana12345";
      const string subject = "Subject";
      const string body = "Body";

      var smtp = new SmtpClient
      {
        Host = "smtp.gmail.com",
        Port = 465,
        EnableSsl = true,
        DeliveryMethod = SmtpDeliveryMethod.Network,
        UseDefaultCredentials = false,
        Credentials = new NetworkCredential(fromAddress.Address, fromPassword)
      };
      using (var message = new MailMessage(fromAddress, toAddress)
      {
        Subject = subject,
        Body = body
      })
      {
      try{
        smtp.Send(message);
       }catch(Exception ex){
        MessageBox.Show(ex.Message);
       }
      }

的App.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.net>
    <defaultProxy>
      <proxy usesystemdefault="False" proxyaddress="http://123.456.78.90:8000" bypassonlocal="True" autoDetect="False" />
    </defaultProxy>
  </system.net>
</configuration>

1 个答案:

答案 0 :(得分:2)

建议使用端口587 for gmail。

可能无法通过公司网络/代理使用SMTP发送并被阻止。我们遇到了这个问题,他们使用的是一种SMTP中继,您可以使用该中继来发送邮件,而无需您的程序需要代理知晓。

值得检查一下你可以使用telnet离开吗? http://www.port25.com/how-to-check-an-smtp-connection-with-a-manual-telnet-session-2/

另一种可能性是反病毒客户端阻止该程序发送电子邮件(McAffe特别擅长),尝试在运行程序之前禁用所有AV保护。