12

さて、私は本質的に企業の電子メールクライアントとして機能するこのプログラムを持っています。それは彼らのために電子メールを作成して送信します。

私はそれについてすべてをやったが、電子メールを送信しようとすると、彼らは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);
    }

補足として。自分の資格情報を使用している場合、プログラムは自分のサーバーを通過している場合に機能しますが、自分のサーバーにリンクしている場合は機能しません。

4

1 に答える 1

9

この問題を解決するには、オプションのパラメーターを使用する必要DomainがありましたNetworkCredential

私のコードは次のようになります。

NetworkCredential basicCredential = new NetworkCredential(MailConst.UserName, MailConst.Password, MailConst.Domain

は、 ExchangeMailConst.Domainドメインを指す文字列です。

于 2013-11-15T18:39:38.640 に答える