我一直在从事这个项目以向用户发送电子邮件,并且一直出现错误。(我使用的是 EASendMail NuGet 包)它是“'的类型初始化器?' 抛出异常。” (这是在软件包所具有的错误系统的控制台中)我真的不知道这意味着什么,我的代码是这样的:
using EASendMail;
namespace Email
{
class Program
{
static void Main(string[] args)
{
try
{
SmtpMail oMail = new SmtpMail("TryIt");
// Set sender email address, please change it to yours
oMail.From = "Splat2ooner@gmail.com";
// Set recipient email address, please change it to yours
oMail.To = "Splat2ooner@gmail.com";
// Set email subject
oMail.Subject = "test email from c# project";
// Set email body
oMail.TextBody = "this is a test email sent from c# project, do not reply";
// SMTP server address
SmtpServer oServer = new SmtpServer("smtp.gmail.com");
// User and password for ESMTP authentication
oServer.User = "Splat2ooner@gmail.com";
oServer.Password = "password (not my passoword)";
// Most mordern SMTP servers require SSL/TLS connection now.
// ConnectTryTLS means if server supports SSL/TLS, SSL/TLS will be used automatically.
oServer.ConnectType = SmtpConnectType.ConnectTryTLS;
// If your SMTP server uses 587 port
//oServer.Port = 587;
// If your SMTP server requires SSL/TLS connection on 25/587/465 port
//oServer.Port = 25; // 25 or 587 or 465
oServer.ConnectType = SmtpConnectType.ConnectSSLAuto;
Console.WriteLine("start to send email ...");
SmtpClient oSmtp = new SmtpClient();
oSmtp.SendMail(oServer, oMail);
Console.WriteLine("email was sent successfully!");
}
catch (Exception ep)
{
Console.WriteLine("failed to send email with the following error:");
Console.WriteLine(ep.Message);
}
}
}
}
谢谢。