这是我在Stack上发表的第一篇文章,而我字面上刚刚开始编程,所以请耐心等待。
我试图向" x"发送电子邮件。按下按钮1时的电子邮件地址。我环顾四周,每个线程都是行话重,而不是我的背景。请原谅我,如果这是" newb'问题,或者它是否已经在其他地方得到了回答。
我得到的错误是" 邮件发送失败。 ---> System.IO.IOException:无法从传输连接中读取数据:net_io_connectionclosed。"
这是我的代码
using (SmtpClient smtp = new SmtpClient())
{
smtp.Host = "smtp.gmail.com";
smtp.Port = 465;
smtp.Credentials = new NetworkCredential("myemail", "mypassword");
string to = "toemail";
string from = "myemail";
MailMessage mail = new MailMessage(from, to);
mail.Subject = "test test 123";
mail.Body = "test test 123";
try
{
smtp.Send(mail);
}
catch (Exception ex)
{
Console.WriteLine("Exception caught in CreateTestMessage2(): {0}",
ex.ToString());
}
非常感谢任何帮助!
答案 0 :(得分:4)
您收到的错误可能来自连接失败,拒绝尝试的服务器以及被阻止的端口等过多的内容。
我绝不是SMTP及其工作方面的专家,但是,您似乎缺少设置SmtpClient.
的某些属性
我还发现使用端口465有点陈旧,当我使用端口587运行代码时,它执行没有问题。尝试将代码更改为类似的内容:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net.Mail;
using System.Net;
namespace EmailTest
{
class Program
{
static void Main(string[] args)
{
SendMail();
}
public static void SendMail()
{
MailAddress ma_from = new MailAddress("senderEmail@email", "Name");
MailAddress ma_to = new MailAddress("targetEmail@email", "Name");
string s_password = "accountPassword";
string s_subject = "Test";
string s_body = "This is a Test";
SmtpClient smtp = new SmtpClient
{
Host = "smtp.gmail.com",
//change the port to prt 587. This seems to be the standard for Google smtp transmissions.
Port = 587,
//enable SSL to be true, otherwise it will get kicked back by the Google server.
EnableSsl = true,
//The following properties need set as well
DeliveryMethod = SmtpDeliveryMethod.Network,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(ma_from.Address, s_password)
};
using (MailMessage mail = new MailMessage(ma_from, ma_to)
{
Subject = s_subject,
Body = s_body
})
try
{
Console.WriteLine("Sending Mail");
smtp.Send(mail);
Console.WriteLine("Mail Sent");
Console.ReadLine();
}
catch (Exception ex)
{
Console.WriteLine("Exception caught in CreateTestMessage2(): {0}",
ex.ToString());
Console.ReadLine();
}
}
}
}
经过测试也能正常工作。另外值得注意的是:如果您的Gmail帐户不允许"不太安全"要访问它的应用,您将收到错误并将消息发送到您的收件箱,说明未经授权的访问尝试被捕获。
要更改这些设置,请转到here。
希望这会有所帮助,让我知道它是如何运作的。