標準のGoogle Appsアカウントを持っています。 Google Appsでカスタムドメインを設定しました。 Gmailインターフェースを使用すると、Google Appsを介してメールを正常に送受信できます。ただし、コードでメールを送信したいです。これを試みるために、私は次のコードを試しています:
MailMessage mailMessage = new MailMessage();
mailMessage.To.Add("[email protected]");
mailMessage.Subject = "Test";
mailMessage.Body = "<html><body>This is a test</body></html>";
mailMessage.IsBodyHtml = true;
// Create the credentials to login to the gmail account associated with my custom domain
string sendEmailsFrom = "[email protected]";
string sendEmailsFromPassword = "password";
NetworkCredential cred = new NetworkCredential(sendEmailsFrom, sendEmailsFromPassword);
SmtpClient mailClient = new SmtpClient("smtp.gmail.com", 587);
mailClient.EnableSsl = true;
mailClient.DeliveryMethod = SmtpDeliveryMethod.Network;
mailClient.UseDefaultCredentials = false;
mailClient.Timeout = 20000;
mailClient.Credentials = cred;
mailClient.Send(mailMessage);
Sendメソッドに到達すると、次のような例外がスローされます。
「SMTPサーバーには安全な接続が必要であるか、クライアントが認証されていません。サーバーの応答は5.5.1認証が必要です。」
Google経由でカスタムドメイン経由でメールを送信するにはどうすればよいですか?
ありがとう!
コード内のすべてのsmtp設定をハードコードする必要はありません。代わりにweb.configに入れてください。これにより、必要に応じてこれらの設定を暗号化し、アプリケーションを再コンパイルせずにその場で変更できます。
<configuration>
<system.net>
<mailSettings>
<smtp from="[email protected]" deliveryMethod="Network">
<network Host="smtp.gmail.com" port="587"
userName="[email protected]" password="password"/>
</smtp>
</mailSettings>
</system.net>
</configuration>
SmtpClientでSSLを有効にするだけでメールを送信すると終了します。
var message = new MailMessage("[email protected]");
// here is an important part:
message.From = new MailAddress("[email protected]", "Mailer");
// it's superfluous part here since from address is defined in .config file
// in my example. But since you don't use .config file, you will need it.
var client = new SmtpClient();
client.EnableSsl = true;
client.Send(message);
Gmailで認証しようとしているのと同じメールアドレスからメールを送信していることを確認してください。
注:.NET 4.0以降では、コードで設定するのではなく、web.configにenableSsl = "true"を挿入できます。
これは私がWPF 4で使用するものです
SmtpClient client = new SmtpClient();
client.Credentials = new NetworkCredential("[email protected]", "P@$$w0rD");
client.Port = 587;
client.Host = "smtp.gmail.com";
client.EnableSsl = true;
try {
MailAddress
maFrom = new MailAddress("[email protected]", "Sender's Name", Encoding.UTF8),
maTo = new MailAddress("[email protected]", "Recipient's Name", Encoding.UTF8);
MailMessage mmsg = new MailMessage(maFrom.Address, maTo.Address);
mmsg.Body = "<html><body><h1>Some HTML Text for Test as BODY</h1></body></html>";
mmsg.BodyEncoding = Encoding.UTF8;
mmsg.IsBodyHtml = true;
mmsg.Subject = "Some Other Text as Subject";
mmsg.SubjectEncoding = Encoding.UTF8;
client.Send(mmsg);
MessageBox.Show("Done");
} catch (Exception ex) {
MessageBox.Show(ex.ToString(), ex.Message);
//throw;
}
ファイアウォールとアンチウイルスに注意してください。これらの不気味なことは、電子メールを送信するアプリケーションをブロックする傾向があります。メールを送信するには、McAfee Enterpriseを使用し、実行可能ファイル名(Bazar.exeとBazar.vshost.exeの両方のBazar。*など)を追加する必要があります...
何もする必要はありません。初めて現在のアカウントにログインして、指示に従ってください。
問題は解決します。これは、Googleアプリでアカウントを作成したがログインしなかったために発生します。ログインし、指示に従って試してください。
ポートを465に変更します
私のコードは、Port = 587でTLSを使用してsmtp.google.comに接続しています(SSLはポート465である必要があります)が、EnableSsl = trueが必要です
SmtpClient smtp = new SmtpClient();
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;
smtp.EnableSsl = true;
smtp.UseDefaultCredentials = false;
NetworkCredential credentials = new NetworkCredential();
credentials.UserName = "INSERT EMAIL";
credentials.Password = "INSERT PASSWORD";
smtp.Credentials = credentials;
MailAddress addressFrom = new MailAddress(credentials.UserName);
MailAddress addressTo = new MailAddress("INSERT RECIPIENT");
MailMessage msg = new MailMessage(addressFrom, addressTo);
msg.Subject = "SUBJECT"
msg.Body = "BODY";
smtp.Send(msg);
G SUITEアカウントのこれらの重要な前提条件に注意してください