780

私のホストに頼ってEメールを送るのではなく、私は自分のGmailアカウントを使ってEメールメッセージを送ることを考えていました。 Eメールは私がショーで演奏するバンドへのパーソナライズされたEメールです。それは可能ですか?


21 답변


980

必ず使う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);
}


  • 過去xx分に送信数が多すぎるとGoogleが突然判断した場合でも、ユーザーがログインしていないというエラーが表示されることがあります。しばらくしてもエラーが発生する場合は、常にtrySendを追加してから、もう一度試してください。 - Jason Short
  • 興味深い注意:' UseDefaultCredentials = falseを交換した場合、' '認証情報= ...'認証されませんでした。 - Nathan Wheeler
  • この方法を使用してSPFに問題はありません。すべての電子メールクライアントは、これを正確に実行するように設定できます。あなたがあなた自身のサーバを使うならば、あなたはただ問題を得るかもしれませんsmtp.gmail.com)とsomething@gmail.com送信者として。ところで:smtp.gmail.com送信者アドレスが自分のものではない場合、自動的に送信者アドレスを上書きします。 - Meinersbur
  • いろいろな調整をしてもうまく動かないのですが。関連記事で示唆されているように、私はそれがうまく送信されるのを妨げているのは実際に私のアンチウイルスであることがわかりました。問題のウイルス対策はMcAffeeとその「アクセス保護」です。 「ウイルス対策標準保護」があります。 「大量メール送信型ワームによる電子メールの送信を防止」というカテゴリルール。このルールを微調整したり無効にしたりすることで、このコードが機能するようになりました。 - yourbuddypal
  • 2要素認証が有効になっているアカウント(私の個人用アカウント)でテストしていることに気付くまで、5.5.1 Authentication Requiredエラーメッセージが表示されていました。それを持っていなかったアカウントを使用したら、それはうまくいきました。私の個人的な行動でテストしている自分のアプリケーション用のパスワードを生成することもできましたが、それはしたくありませんでした。 - Nick DeVore

142

上記の答えはうまくいきません。あなたが設定する必要があります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);
}


  • 面白い;それは私のマシン(TM)上で動作します。もっともらしいと思われるので、回答に追加します。 - Domenic
  • うーん、SmtpDeliveryMethod.Networkがデフォルトだと思いますが、IISでの実行時にデフォルトが変更される可能性があります。 - Domenic
  • デスクトップアプリから実行しました。 - Donny V.
  • コンソールアプリケーションで同じコードを使用しています。エラーが発生しています"メールの送信に失敗しました" - Karthikeyan P
  • この答えはうまくいきません。質問を見てくださいstackoverflow.com/questions/34851484/… - user5515846

76

他の答えが「サーバーから」最初に機能するために安全性の低いアプリのアクセスを有効にするGmailアカウントで。

最近Googleがセキュリティポリシーを変更したようです。あなたがここで説明されているようにあなたのアカウント設定を変更するまで、最高と評価された答えはもはや機能しません。https://support.google.com/accounts/answer/6010255?hl=en-GBenter image description here

enter image description here

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


  • これは私のために働きました。そしてまた心配です。そのセキュリティをオフにしたいのかどうかわからない。再考する必要があるかもしれません... - Sully
  • セキュリティの観点からは、2段階認証プロセスを有効にしてからアプリパスワードを生成して使用する方が適切です。新しいセキュリティポリシーに従って.Netで電子メールを送信する方法 - Michael Freidgeim
  • @BCSソフトウェア、インミープログラム、ユーザーは私のプログラムがそれを通してメッセージを送るためにそれを使わなければならないどんな電子メールでも挿入します。では、2要素認証がオンになっている場合でも、どのようにしてEメール・ユーザーがEメールを送信できるようにすることができますか。 - Alaa'

39

これは、添付ファイル付きの電子メールを送信することです。シンプルで短い。

ソース: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);

}


17

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

最新のセキュリティ標準をサポートしていないアプリの例は次のとおりです。

  • iOS 6以下のiPhoneまたはiPadのメールアプリ

  • 8.1リリースより前のWindows Phoneのメールアプリ

  • Microsoft OutlookやMozilla Thunderbirdなどのデスクトップメールクライアント

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

Googleアカウントにログインしたら、次のURLにアクセスしてください。

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


15

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

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


  • あなたの記事は実際に質問に答えるかもしれませんが、それは好ましいでしょうここに答えの本質的な部分を含み、参照用のリンクを提供する。 Stack Overflowは、その質問と回答と同じくらい役に立ちます。そして、あなたのブログホストがダウンしたり、あなたのURLが動き回ると、この答えは役に立たなくなります。ありがとうございます。 - sarnold

14

それを機能させるためには、私は自分のgmailアカウントを有効にして他のアプリがアクセスできるようにする必要がありました。これは「安全性の低いアプリを有効にする」を使って行います。またこのリンクを使う:https://accounts.google.com/b/0/DisplayUnlockCaptcha


13

このコードがうまくいくことを願っています。あなたは試してみることができます。

// 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);


  • message send_mail = new MailMessage();この行はどのように機能しますか? System.Net.Mail.MailMessage'を暗黙的に変換することはできません。 System.Windows.Forms.Messageへ' - Debaprasad

8

これを含める

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);


7

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

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

コードは一目瞭然です、emailとpasswordをあなたのemailとpasswordの値に置き換えてください。

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のようなクラス名を使いました。 - Jui Test

6

あなたがバックグラウンドEメールを送りたいならば、それから以下をしてください

 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;


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

一つのヒント! 送信者の受信トレイを確認してください。安全性の低いアプリを許可する必要があるかもしれません。 見る:https://www.google.com/settings/security/lesssecureapps


4

これを試して、

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


3

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

なりすましを防ぐために - Gmail / Outlook.comでは、任意のユーザーアカウント名からの送信を許可しません。

送信者の数が限られている場合は、以下の指示に従って設定してください。Fromこのアドレスへのフィールド:別のアドレスからメールを送信する

あなたができる最善についてあなたが任意のEメールアドレス(ユーザーが彼らのEメールを入力して、あなたがあなたに直接あなたにEメールを送りたくないウェブサイトのフィードバックフォーム)から送りたいならば、これは:

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

これはあなたのフィードバックページであなたのバンドのファンに返信するためにあなたのEメールアカウントで 'reply'を打つことを可能にするでしょう、しかし彼らはあなたの実際のEメールを得ないでしょう。

あなたが管理された環境にいるなら、これはとてもうまくいきます、しかし、私は何人かの電子メールクライアントが返事が指定されている時でさえもfromアドレスに送るのを見ました。


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>


1

私にとっての問題は、私のパスワードにブラックスラッシュ「\」がありましたその中に、私がそれを気付かずに貼り付けたものは、問題を引き起こすでしょう。


1

これを試してください

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)
        { }
        catch (SmtpException ex)
        { }
        finally
        {
            mailSender = null;
            mailMessage.Dispose();
        }
        return false;
}


1

からコピー別の答え上記の方法は機能しますが、gmailは常に "from"および "reply to"メールを実際の送信用gmailアカウントに置き換えます。どうやらしかし回避策があります:

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

「3.アカウントタブで、「あなたが所有する別のEメールアドレスを追加する」リンクをクリックし、それを確認してください」

それともこの

更新3:読者Derek Bennettは、「解決方法はあなたのgmail設定に入ることです:あなたのgmailアカウント以外のアカウントを「デフォルトにする」。これはgmailがどんなデフォルトアカウントの電子メールででもFromフィールドを書き直す原因となりますアドレスは。」

リンクされた質問


関連する質問

最近の質問