4

私は次の基本的なコードを使用しています:

System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage();

msg.to.add("someone@hotmail.com");
msg.to.add("someone@gmail.com");
msg.to.add("someone@myDomain.com");

msg.From = new MailAddress("me@myDomain.com", "myDomain", System.Text.Encoding.UTF8);
msg.Subject = "subject";
msg.SubjectEncoding = System.Text.Encoding.UTF8;
msg.Body = "body";
msg.BodyEncoding = System.Text.Encoding.UTF8;
msg.IsBodyHtml = false;

//Add the Creddentials
SmtpClient client = new SmtpClient();
client.Host = "192.168.0.24"; 
client.Credentials = new System.Net.NetworkCredential("me@myDomain.com", "password");
client.Port = 25;

try
{
   client.Send(msg);
}
catch (System.Net.Mail.SmtpException ex)
{
    sw.WriteLine(string.Format("ERROR MAIL: {0}. Inner exception: {1}", ex.Message,  ex.InnerException.Message));
}

問題は、メールが私のドメインのアドレス(someone@mydomain.com)にのみ送信され、他の2つのアドレスに対して次の例外が発生することです。

System.Net.Mail.SmtpFailedRecipientException:メールボックスを利用できません。サーバーの応答は次のとおりです。この場所にはそのようなドメインはありません

SMTPクライアントをブロックしていることが関係しているのではないかと思いますが、これにどのようにアプローチすればよいかわかりません。何か案が?ありがとう!

4

2 に答える 2

4

ロンは正しいです。587ポートを使用するだけで、希望どおりに機能します。

このコードをチェックして、機能するかどうかを確認してください。

using System;
using System.Windows.Forms;
using System.Net.Mail;

namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                MailMessage mail = new MailMessage();
                SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");

                mail.From = new MailAddress("your_email_address@gmail.com");
                mail.To.Add("to_address@mfc.ae");
                mail.Subject = "Test Mail";
                mail.Body = "This is for testing SMTP mail from GMAIL";

                SmtpServer.Port = 587;
                SmtpServer.Credentials = new System.Net.NetworkCredential("username", "password");
                SmtpServer.EnableSsl = true;

                SmtpServer.Send(mail);
                MessageBox.Show("mail Send");
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
        }
    }
}
于 2012-05-15T04:03:45.243 に答える
2

port=587 を使用してみてください。便利な関連リンクは次のとおりです: http://mostlygeek.com/tech/smtp-on-port-587/comment-page-1/

于 2012-05-14T22:56:45.133 に答える