Gmailを介して.NETでメールを送信する


876

ホストに頼ってメールを送信する代わりに、Gmailアカウントを使用してメールメッセージを送信することを考えていました。メールは、私がショーで演奏するバンドへのパーソナライズされたメールです。

できますか?


1
< systemnetmail.com >は、おそらく1つの .NET名前空間専用の最もばかげて完全なサイトですが、ASP.NETやデスクトップなど、.NETを介したメールの送信について知りたいことがすべてあります。< systemwebmail.com >は投稿の元のURLでしたが、.NET 2.0以降では使用しないでください。
Adam Haile

13
ASP.Net Mvcを使用している場合は、MvcMailerを確認することをお勧めします。github.com/ smsohan
MvcMailer /


このコードを使用してファイルを送信する方法?
ラナディアレディ

回答:


1065

System.Net.Mail非推奨ではなく、必ず使用してくださいSystem.Web.Mail。SSLを使って行うことSystem.Web.Mailは、ハックな拡張機能の総混乱です。

using System.Net;
using System.Net.Mail;

var fromAddress = new MailAddress("from@gmail.com", "From Name");
var toAddress = new MailAddress("to@example.com", "To Name");
const string fromPassword = "fromPassword";
const string subject = "Subject";
const string body = "Body";

var smtp = new SmtpClient
{
    Host = "smtp.gmail.com",
    Port = 587,
    EnableSsl = true,
    DeliveryMethod = SmtpDeliveryMethod.Network,
    UseDefaultCredentials = false,
    Credentials = new NetworkCredential(fromAddress.Address, fromPassword)
};
using (var message = new MailMessage(fromAddress, toAddress)
{
    Subject = subject,
    Body = body
})
{
    smtp.Send(message);
}

49
過去xx分間に送信したのが突然多すぎるとGoogleが判断した場合でも、ユーザーがログインしていないというエラーが発生する可能性があります。エラーがしばらくスリープする場合は、常にtrySendを追加してから、再試行してください。
Jason Short

72
興味深いメモ:「UseDefaultCredentials = false」と「Credentials = ...」を入れ替えると、認証されません。
Nathan Wheeler、

13
この方法を使用してもSPFに問題はありません。すべての電子メールクライアントは、まさにこれを行うように構成できます。自分のサーバー(つまり以外のものsmtp.gmail.com)をsomething@gmail.com送信者として使用すると、問題が発生する可能性があります。ところでsmtp.gmail.com、あなたのものではない場合、送信者アドレスを自動的に上書きします。
Meinersbur

24
さまざまな調整を行っても、うまく機能しませんでした。関連する投稿で示唆されているように、メールの送信を妨げているのは実際には私のアンチウイルスであることがわかりました。問題のアンチウイルスはMcAffeeであり、その「アクセス保護」には「アンチウイルス標準保護」カテゴリがあり、「大量メール送信ワームによる電子メールの送信を防止する」ルールがあります。そのルールを微調整/無効化すると、このコードが機能します!
yourbuddypal

18
2要素認証がオンになっているアカウント(個人用アカウント)でテストしていることに気づくまで、5.5.1認証が必要というエラーメッセージが表示されました。それを持たないアカウントを使用すると、問題なく動作しました。個人アカウントでテストしているアプリケーションのパスワードを生成することもできましたが、それはしたくありませんでした。
Nick DeVore 2013年

153

上記の答えは機能しません。設定するDeliveryMethod = SmtpDeliveryMethod.Network必要があります。そうしないと、「クライアントが認証されませんでした」というエラーが返されます。また、常にタイムアウトを設定することをお勧めします。

改訂されたコード:

using System.Net.Mail;
using System.Net;

var fromAddress = new MailAddress("from@gmail.com", "From Name");
var toAddress = new MailAddress("to@yahoo.com", "To Name");
const string fromPassword = "password";
const string subject = "test";
const string body = "Hey now!!";

var smtp = new SmtpClient
{
    Host = "smtp.gmail.com",
    Port = 587,
    EnableSsl = true,
    DeliveryMethod = SmtpDeliveryMethod.Network,
    Credentials = new NetworkCredential(fromAddress.Address, fromPassword),
    Timeout = 20000
};
using (var message = new MailMessage(fromAddress, toAddress)
{
    Subject = subject,
    Body = body
})
{
    smtp.Send(message);
}

3
面白い; 私のマシン(TM)で動作します。しかし、これはもっともらしいので、私はそれを私の答えに追加します。
Domenic

3
うーん、SmtpDeliveryMethod.Networkがデフォルトであると思いますが、IISで実行するとデフォルトが変更される可能性があります。
Domenic

3
コンソールアプリケーションで同じコードを使用していますが、「メールの送信に失敗
Karthikeyan P

5
この回答は機能しません。してください、質問を見stackoverflow.com/questions/34851484/...

110

他の回答が「サーバーから」機能するようにするには、まずGmailアカウントで安全性の低いアプリのアクセスをオンにします。

最近Googleがセキュリティポリシーを変更したようです。ここで説明されているようにアカウント設定を変更するまで、最高評価の回答は機能しません。https//support.google.com/accounts/answer/6010255?hl = ja-GBここに画像の説明を入力してください

ここに画像の説明を入力してください

2016年3月現在、グーグルが設置場所を改めて変更しました!


4
これでうまくいきました。そしてまた心配しています。そのセキュリティをオフにしたいのかわかりません。再考する必要があるかもしれません...
Sully

4
セキュリティの観点からは、2段階認証プロセスを有効にし、アプリパスワードを生成して使用する方が適切です。新しいセキュリティポリシーに従って.Netでメールを送信する方法を
Michael Freidgeim、2016年

2
@BCSソフトウェア、私のプログラム、ユーザーは、私のプログラムがメッセージを送信するために使用する必要がある電子メールを挿入します。では、2要素認証がオンになっている場合でも、メールユーザーがメールを送信できるようにするにはどうすればよいですか?
Alaa '

これは、Microsoft Outlookクライアント(デスクトップ、携帯電話など)を使用してGoogleのGMail経由でメールを送受信する場合に変更する必要がある設定と同じです。
Brett Rigby

41

これは添付ファイル付きの電子メールを送信することです。

ソース:http : //coding-issues.blogspot.in/2012/11/sending-email-with-attachments-from-c.html

using System.Net;
using System.Net.Mail;

public void email_send()
{
    MailMessage mail = new MailMessage();
    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
    mail.From = new MailAddress("your mail@gmail.com");
    mail.To.Add("to_mail@gmail.com");
    mail.Subject = "Test Mail - 1";
    mail.Body = "mail with attachment";

    System.Net.Mail.Attachment attachment;
    attachment = new System.Net.Mail.Attachment("c:/textfile.txt");
    mail.Attachments.Add(attachment);

    SmtpServer.Port = 587;
    SmtpServer.Credentials = new System.Net.NetworkCredential("your mail@gmail.com", "your password");
    SmtpServer.EnableSsl = true;

    SmtpServer.Send(mail);

}

21

Googleは、最新のセキュリティ標準を使用していない一部のアプリまたはデバイスからのログイン試行をブロックする場合があります。これらのアプリやデバイスは侵入しやすいため、ブロックするとアカウントをより安全に保つことができます。

最新のセキュリティ標準をサポートしていないアプリの例には次のものがあります。

  • iOS 6以下を搭載したiPhoneまたはiPadのメールアプリ
  • 8.1リリースより前のWindows Phoneのメールアプリ
  • Microsoft OutlookやMozilla Thunderbirdなどの一部のデスクトップメールクライアント

したがって、Googleアカウントで安全性の低いサインインを有効にする必要があります。

Googleアカウントにサインインした後、次の場所に移動します。

https://myaccount.google.com/lesssecureapps
または
https://www.google.com/settings/security/lesssecureapps

C#では、次のコードを使用できます。

using (MailMessage mail = new MailMessage())
{
    mail.From = new MailAddress("email@gmail.com");
    mail.To.Add("somebody@domain.com");
    mail.Subject = "Hello World";
    mail.Body = "<h1>Hello</h1>";
    mail.IsBodyHtml = true;
    mail.Attachments.Add(new Attachment("C:\\file.zip"));

    using (SmtpClient smtp = new SmtpClient("smtp.gmail.com", 587))
    {
        smtp.Credentials = new NetworkCredential("email@gmail.com", "password");
        smtp.EnableSsl = true;
        smtp.Send(mail);
    }
}


16

これが私のバージョンです。「C#でGmailを使用してメールを送信」。

using System;
using System.Net;
using System.Net.Mail;

namespace SendMailViaGmail
{
   class Program
   {
   static void Main(string[] args)
   {

      //Specify senders gmail address
      string SendersAddress = "Sendersaddress@gmail.com";
      //Specify The Address You want to sent Email To(can be any valid email address)
      string ReceiversAddress = "ReceiversAddress@yahoo.com";
      //Specify The password of gmial account u are using to sent mail(pw of sender@gmail.com)
      const string SendersPassword = "Password";
      //Write the subject of ur mail
      const string subject = "Testing";
      //Write the contents of your mail
      const string body = "Hi This Is my Mail From Gmail";

      try
      {
        //we will use Smtp client which allows us to send email using SMTP Protocol
        //i have specified the properties of SmtpClient smtp within{}
        //gmails smtp server name is smtp.gmail.com and port number is 587
        SmtpClient smtp = new SmtpClient
        {
           Host = "smtp.gmail.com",
           Port = 587,
           EnableSsl = true,
           DeliveryMethod = SmtpDeliveryMethod.Network,
           Credentials    = new NetworkCredential(SendersAddress, SendersPassword),
           Timeout = 3000
        };

        //MailMessage represents a mail message
        //it is 4 parameters(From,TO,subject,body)

        MailMessage message = new MailMessage(SendersAddress, ReceiversAddress, subject, body);
        /*WE use smtp sever we specified above to send the message(MailMessage message)*/

        smtp.Send(message);
        Console.WriteLine("Message Sent Successfully");
        Console.ReadKey();
     }

     catch (Exception ex)
     {
        Console.WriteLine(ex.Message);
        Console.ReadKey();
     }
    }
   }
 }

8
あなたの記事は実際に質問に答えることがありますが、ここに答えの本質的な部分を含め、参照用のリンクを提供することが望ましいでしょう。Stack Overflowは、その質問と回答と同じくらい有用です。ブログホストがダウンしたり、URLが移動したりすると、この回答は役に立たなくなります。ありがとう!
sarnold 2012年

14

このコードがうまく機能することを願っています。試すことができます。

// Include this.                
using System.Net.Mail;

string fromAddress = "xyz@gmail.com";
string mailPassword = "*****";       // Mail id password from where mail will be sent.
string messageBody = "Write the body of the message here.";


// Create smtp connection.
SmtpClient client = new SmtpClient();
client.Port = 587;//outgoing port for the mail.
client.Host = "smtp.gmail.com";
client.EnableSsl = true;
client.Timeout = 10000;
client.DeliveryMethod = SmtpDeliveryMethod.Network;
client.UseDefaultCredentials = false;
client.Credentials = new System.Net.NetworkCredential(fromAddress, mailPassword);


// Fill the mail form.
var send_mail = new MailMessage();

send_mail.IsBodyHtml = true;
//address from where mail will be sent.
send_mail.From = new MailAddress("from@gmail.com");
//address to which mail will be sent.           
send_mail.To.Add(new MailAddress("to@example.com");
//subject of the mail.
send_mail.Subject = "put any subject here";

send_mail.Body = messageBody;
client.Send(send_mail);

2
メッセージsend_mail = new MailMessage(); このラインはどのように機能すると想定されていますか?「System.Net.Mail.MailMessage」を「System.Windows.Forms.Message」に暗黙的に変換することはできません
Debaprasad

9

これを含める、

using System.Net.Mail;

その後、

MailMessage sendmsg = new MailMessage(SendersAddress, ReceiversAddress, subject, body); 
SmtpClient client = new SmtpClient("smtp.gmail.com");

client.Port = Convert.ToInt16("587");
client.Credentials = new System.Net.NetworkCredential("mail-id@gmail.com","password");
client.EnableSsl = true;

client.Send(sendmsg);

8

ソースASP.NET C#でメールを送信します

以下は、C#を使用してメールを送信するためのサンプル作業コードです。以下の例では、GoogleのSMTPサーバーを使用しています。

コードはかなり自明で、EメールとパスワードをEメールとパスワードの値に置き換えます。

public void SendEmail(string address, string subject, string message)
{
    string email = "yrshaikh.mail@gmail.com";
    string password = "put-your-GMAIL-password-here";

    var loginInfo = new NetworkCredential(email, password);
    var msg = new MailMessage();
    var smtpClient = new SmtpClient("smtp.gmail.com", 587);

    msg.From = new MailAddress(email);
    msg.To.Add(new MailAddress(address));
    msg.Subject = subject;
    msg.Body = message;
    msg.IsBodyHtml = true;

    smtpClient.EnableSsl = true;
    smtpClient.UseDefaultCredentials = false;
    smtpClient.Credentials = loginInfo;
    smtpClient.Send(msg);
}

varの代わりに、NetworkCredential、MailMessage、SmtpClientなどのクラス名を使用しました。
ジュイテスト

7

バックグラウンドメールを送信する場合は、以下を実行してください

 public void SendEmail(string address, string subject, string message)
 {
 Thread threadSendMails;
 threadSendMails = new Thread(delegate()
    {

      //Place your Code here 

     });
  threadSendMails.IsBackground = true;
  threadSendMails.Start();
}

名前空間を追加します

using System.Threading;


5

これを試して、

    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");
            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());
        }
    }

4

このように使う

MailMessage sendmsg = new MailMessage(SendersAddress, ReceiversAddress, subject, body); 
SmtpClient client = new SmtpClient("smtp.gmail.com");

client.Port = Convert.ToInt32("587");
client.EnableSsl = true;
client.Credentials = new System.Net.NetworkCredential("mail-id@gmail.com","MyPassWord");
client.Send(sendmsg);

これを忘れないでください:

using System.Net;
using System.Net.Mail;

4

Gmailのセキュリティ問題を回避するには、最初にGmailの設定からアプリパスワードを生成する必要があります。2段階認証を使用している場合でも、実際のパスワードの代わりにこのパスワードを使用してメールを送信できます。


3

Gmail / Outlook.comメールの送信者を変更する:

なりすましを防止するには-Gmail / Outlook.comでは、任意のユーザーアカウント名から送信することはできません。

送信者の数が限られている場合は、次の手順に従ってFromフィールドを次のアドレスに設定できます。別のアドレスからのメールの送信

任意の電子メールアドレス(ユーザーが電子メールを入力し、直接電子メールで送信したくないWebサイトのフィードバックフォームなど)から送信したい場合は、次のことを実行できます。

        msg.ReplyToList.Add(new System.Net.Mail.MailAddress(email, friendlyName));

これにより、メールページで「返信」をクリックして、フィードバックページでバンドのファンに返信できますが、実際のメールが届かないため、大量のスパムが送信される可能性があります。

制御された環境では問題なく動作しますが、返信先が指定されている場合でも(一部はわかりません)、一部の電子メールクライアントが送信元アドレスに送信するのを見たことがあることに注意してください。


3

同じ問題がありましたが、Gmailのセキュリティ設定と[安全性の低いアプリの許可]に移動することで解決しました。Domenic&Donnyのコードは機能しますが、その設定を有効にした場合のみ

あなたは(Googleに)に署名している場合、あなたは従うことができ、このリンクをトグル「をオンにする」ための「安全性の低いアプリのためのアクセス」


3
using System;
using System.Net;
using System.Net.Mail;

namespace SendMailViaGmail
{
   class Program
   {
   static void Main(string[] args)
   {

      //Specify senders gmail address
      string SendersAddress = "Sendersaddress@gmail.com";
      //Specify The Address You want to sent Email To(can be any valid email address)
      string ReceiversAddress = "ReceiversAddress@yahoo.com";
      //Specify The password of gmial account u are using to sent mail(pw of sender@gmail.com)
      const string SendersPassword = "Password";
      //Write the subject of ur mail
      const string subject = "Testing";
      //Write the contents of your mail
      const string body = "Hi This Is my Mail From Gmail";

      try
      {
        //we will use Smtp client which allows us to send email using SMTP Protocol
        //i have specified the properties of SmtpClient smtp within{}
        //gmails smtp server name is smtp.gmail.com and port number is 587
        SmtpClient smtp = new SmtpClient
        {
           Host = "smtp.gmail.com",
           Port = 587,
           EnableSsl = true,
           DeliveryMethod = SmtpDeliveryMethod.Network,
           Credentials = new NetworkCredential(SendersAddress, SendersPassword),
           Timeout = 3000
        };

        //MailMessage represents a mail message
        //it is 4 parameters(From,TO,subject,body)

        MailMessage message = new MailMessage(SendersAddress, ReceiversAddress, subject, body);
        /*WE use smtp sever we specified above to send the message(MailMessage message)*/

        smtp.Send(message);
        Console.WriteLine("Message Sent Successfully");
        Console.ReadKey();
     }
     catch (Exception ex)
     {
        Console.WriteLine(ex.Message);
        Console.ReadKey();
     }
}
}
}

2

メールを送信し、web.configから資格情報を取得する1つの方法を次に示します。

public static string SendEmail(string To, string Subject, string Msg, bool bodyHtml = false, bool test = false, Stream AttachmentStream = null, string AttachmentType = null, string AttachmentFileName = null)
{
    try
    {
        System.Net.Mail.MailMessage newMsg = new System.Net.Mail.MailMessage(System.Configuration.ConfigurationManager.AppSettings["mailCfg"], To, Subject, Msg);
        newMsg.BodyEncoding = System.Text.Encoding.UTF8;
        newMsg.HeadersEncoding = System.Text.Encoding.UTF8;
        newMsg.SubjectEncoding = System.Text.Encoding.UTF8;

        System.Net.Mail.SmtpClient smtpClient = new System.Net.Mail.SmtpClient();
        if (AttachmentStream != null && AttachmentType != null && AttachmentFileName != null)
        {
            System.Net.Mail.Attachment attachment = new System.Net.Mail.Attachment(AttachmentStream, AttachmentFileName);
            System.Net.Mime.ContentDisposition disposition = attachment.ContentDisposition;
            disposition.FileName = AttachmentFileName;
            disposition.DispositionType = System.Net.Mime.DispositionTypeNames.Attachment;

            newMsg.Attachments.Add(attachment);
        }
        if (test)
        {
            smtpClient.PickupDirectoryLocation = "C:\\TestEmail";
            smtpClient.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.SpecifiedPickupDirectory;
        }
        else
        {
            //smtpClient.EnableSsl = true;
        }

        newMsg.IsBodyHtml = bodyHtml;
        smtpClient.Send(newMsg);
        return SENT_OK;
    }
    catch (Exception ex)
    {

        return "Error: " + ex.Message
             + "<br/><br/>Inner Exception: "
             + ex.InnerException;
    }

}

そしてweb.configの対応するセクション:

<appSettings>
    <add key="mailCfg" value="yourmail@example.com"/>
</appSettings>
<system.net>
  <mailSettings>
    <smtp deliveryMethod="Network" from="yourmail@example.com">
      <network defaultCredentials="false" host="mail.exapmple.com" userName="yourmail@example.com" password="your_password" port="25"/>
    </smtp>
  </mailSettings>
</system.net>

2

これをお試しください

public static bool Send(string receiverEmail, string ReceiverName, string subject, string body)
{
        MailMessage mailMessage = new MailMessage();
        MailAddress mailAddress = new MailAddress("abc@gmail.com", "Sender Name"); // abc@gmail.com = input Sender Email Address 
        mailMessage.From = mailAddress;
        mailAddress = new MailAddress(receiverEmail, ReceiverName);
        mailMessage.To.Add(mailAddress);
        mailMessage.Subject = subject;
        mailMessage.Body = body;
        mailMessage.IsBodyHtml = true;

        SmtpClient mailSender = new SmtpClient("smtp.gmail.com", 587)
        {
            EnableSsl = true,
            UseDefaultCredentials = false,
            DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network,
            Credentials = new NetworkCredential("abc@gmail.com", "pass")   // abc@gmail.com = input sender email address  
                                                                           //pass = sender email password
        };

        try
        {
            mailSender.Send(mailMessage);
            return true;
        }
        catch (SmtpFailedRecipientException ex)
        { 
          // Write the exception to a Log file.
        }
        catch (SmtpException ex)
        { 
           // Write the exception to a Log file.
        }
        finally
        {
            mailSender = null;
            mailMessage.Dispose();
        }
        return false;
}

1

私にとっての問題は、私のパスワードにブラックスラッシュ「\」が含まれていたことでした。問題が発生することを認識せずにコピーして貼り付けました。


1

別の回答からコピーすると、上記の方法は機能しますが、Gmailは常に「差出人」および「返信先」のメールを実際の送信Gmailアカウントに置き換えます。どうやら回避策があります:

http://karmic-development.blogspot.in/2013/10/send-email-from-aspnet-using-gmail-as.html

「3. [アカウント]タブで、[所有している別のメールアドレスを追加]をクリックして確認します」

または多分これ

更新3:リーダーのDerek Bennett氏は、「解決策は、Gmailの[設定:アカウント]に移動し、Gmailアカウント以外のアカウントを[デフォルトにする]です。これにより、Gmailの[差出人]フィールドがデフォルトのアカウントのメールで書き換えられます。住所です。」


1

試すことができMailkitます。それはあなたにメールを送信するためのより良い、高度な機能を提供します。あなたはより多くの見つけることができます。このここでは一例です

    MimeMessage message = new MimeMessage();
    message.From.Add(new MailboxAddress("FromName", "YOU_FROM_ADDRESS@gmail.com"));
    message.To.Add(new MailboxAddress("ToName", "YOU_TO_ADDRESS@gmail.com"));
    message.Subject = "MyEmailSubject";

    message.Body = new TextPart("plain")
    {
        Text = @"MyEmailBodyOnlyTextPart"
    };

    using (var client = new SmtpClient())
    {
        client.Connect("SERVER", 25); // 25 is port you can change accordingly

        // Note: since we don't have an OAuth2 token, disable
        // the XOAUTH2 authentication mechanism.
        client.AuthenticationMechanisms.Remove("XOAUTH2");

        // Note: only needed if the SMTP server requires authentication
        client.Authenticate("YOUR_USER_NAME", "YOUR_PASSWORD");

        client.Send(message);
        client.Disconnect(true);
    }
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.