我的一个 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);
}
}
应用程序配置
<?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>