好的,所以我有这个程序,它本质上充当公司的电子邮件客户端,它为他们构建电子邮件并将其发送出去。
我已经完成了所有操作,但是当要发送电子邮件时,他们会收到一个Mailbox Unavailable. Accessed Denied - Invalid HELO Name
不过有趣的是,我对网络凭据和 from 部分使用相同的用户名。
编辑:将代码更新为我现在使用的...现在Failure sending mail
出现错误。
这是我的MailConst.cs
课:
public class MailConst
{
/*
*/
public static string Username = "username";
public static string Password = "password";
public const string SmtpServer = "smtp.domain.co.uk";
public static string From = Username + "@domain.co.uk";
}
这是我的主类中这些变量的使用:
public static void SendMail(string recipient, string subject, string body, string[] attachments)
{
SmtpClient smtpClient = new SmtpClient();
NetworkCredential basicCredential = new NetworkCredential(MailConst.Username, MailConst.Password, MailConst.SmtpServer);
MailMessage message = new MailMessage();
MailAddress fromAddress = new MailAddress(MailConst.From);
// setup up the host, increase the timeout to 5 minutes
smtpClient.Host = MailConst.SmtpServer;
smtpClient.UseDefaultCredentials = false;
smtpClient.Credentials = basicCredential;
smtpClient.Timeout = (60 * 5 * 1000);
message.From = fromAddress;
message.Subject = subject + " - " + DateTime.Now.Date.ToString().Split(' ')[0];
message.IsBodyHtml = true;
message.Body = body.Replace("\r\n", "<br>");
message.To.Add(recipient);
if (attachments != null)
{
foreach (string attachment in attachments)
{
message.Attachments.Add(new Attachment(attachment));
}
}
smtpClient.Send(message);
}
就像旁注一样。该程序在使用我的凭据时工作,在通过我自己的服务器时,只是在将其链接到他们的服务器时不起作用。