931

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

それは可能ですか?

4

22 に答える 22

1123

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

さらに、Google アカウント > セキュリティページに移動し、Google へのサインイン > 2 段階認証プロセスの設定を確認します。

  • 有効になっている場合は、.NET が 2 段階認証プロセスをバイパスできるようにパスワードを生成する必要があります。これを行うには、[ Signing in to Google] > [App passwords ] をクリックし、app = Mail、device = Windows Computer を選択し、最後にパスワードを生成します。fromPassword標準の Gmail パスワードの代わりに、生成されたパスワードを定数で使用します。
  • 無効になっている場合は、Less secure app accessを有効にする必要がありますが、これはお勧めできません! そのため、2 段階認証プロセスを有効にすることをお勧めします。
于 2008-08-28T14:08:03.307 に答える
161

上記の答えは機能しません。設定する必要があります。そうしない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);
}
于 2009-01-28T22:01:50.607 に答える
128

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

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

ここに画像の説明を入力

2016 年 3 月現在、Google は再び設定場所を変更しました。

于 2015-09-08T12:09:15.150 に答える
44

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

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

}
于 2012-05-28T12:41:34.200 に答える
24

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);
    }
}
于 2014-08-09T07:28:04.490 に答える
17

ここに私のバージョンがあります: " Send Email In C # Using 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();
     }
    }
   }
 }
于 2010-10-17T21:19:16.610 に答える
10

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

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

コードは一目瞭然です。電子メールとパスワードを電子メールとパスワードの値に置き換えます。

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);
}
于 2012-08-22T12:29:57.323 に答える
8

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

 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;
于 2013-07-23T09:47:34.987 に答える
5

このように使う

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;
于 2015-07-09T06:57:43.600 に答える
4

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

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

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

任意の電子メール アドレス (ユーザーが電子メールを入力する Web サイトのフィードバック フォームなど) から送信したい場合、あなたができる最善の方法は次のとおりです。

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

これにより、電子メール アカウントで「返信」を押すだけで、フィードバック ページでバンドのファンに返信できますが、実際の電子メールは受信されず、大量のスパムにつながる可能性があります。

制御された環境にいる場合、これはうまく機能しますが、reply-to が指定されている場合でも、いくつかの電子メール クライアントが送信元アドレスに送信するのを見たことに注意してください (どれかはわかりません)。

于 2013-07-07T20:49:44.853 に答える
4

私は同じ問題を抱えていましたが、gmail のセキュリティ設定に移動し、安全性の低いアプリを許可することで解決しました。ドメニックとドニーのコードは機能しますが、その設定を有効にした場合のみです

(Google に) サインインしている場合は、このリンクをたどって、[安全性の低いアプリのアクセス] の[有効にする]を切り替えることができます。

于 2015-06-25T07:09:18.637 に答える