我想向我的 Web 应用程序的 1000 多个用户发送邮件。我正在购买新的 smtp 服务计划。我正在使用以下代码发送电子邮件。
System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
message.From = new MailAddress("info@mydomain.com", "Web Administration Team");
message.To.Add(new MailAddress("user1@gmail.com"));
message.Subject = "test";
message.Body = "Email Content";
message.IsBodyHtml = true;
SmtpClient smtp = new SmtpClient("domain.smtp.com", 2525);
smtp.UseDefaultCredentials = false;
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.EnableSsl = false;
smtp.Credentials = new System.Net.NetworkCredential("info@domain.com","password");
smtp.Send(message);
但我收到以下错误消息。
信箱不可用。服务器响应是:需要身份验证。如果您无法成功进行身份验证,请联系支持 (support@smtp.com)