メールの送信をホストに頼る代わりに、自分のGmailアカウントを使用してメール メッセージを送信することを考えていました。メールは、私がショーで演奏するバンドへのパーソナライズされたメールです。
それは可能ですか?
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 段階認証プロセスの設定を確認します。
fromPassword
標準の Gmail パスワードの代わりに、生成されたパスワードを定数で使用します。上記の答えは機能しません。設定する必要があります。そうしない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);
}
「サーバーから」他の回答が機能するようにするには、最初に gmail アカウントで安全性の低いアプリのアクセスをオンにします。
最近、Google がセキュリティ ポリシーを変更したようです。ここで説明されているようにアカウント設定を変更するまで、最高評価の回答は機能しなくなります: https://support.google.com/accounts/answer/6010255?hl=en-GB
2016 年 3 月現在、Google は再び設定場所を変更しました。
これは、添付ファイル付きの電子メールを送信することです..シンプルで短い..
ソース: 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);
}
Google は、最新のセキュリティ標準を使用していない一部のアプリまたはデバイスからのログイン試行をブロックする場合があります。これらのアプリやデバイスは侵入されやすいため、ブロックすることでアカウントを安全に保つことができます。
最新のセキュリティ基準をサポートしていないアプリの例としては、次のものがあります。
したがって、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);
}
}
ここに私のバージョンがあります: " 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();
}
}
}
}
ソース: 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);
}
バックグラウンドでメールを送信したい場合は、以下を実行してください。
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;
このように使う
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;
Gmail / Outlook.com メールの送信者の変更:
なりすましを防ぐため、Gmail/Outlook.com では、任意のユーザー アカウント名から送信することはできません。
送信者の数が限られている場合は、次の手順に従って、From
フィールドを次のアドレスに設定できます:別のアドレスからメールを送信する
任意の電子メール アドレス (ユーザーが電子メールを入力する Web サイトのフィードバック フォームなど) から送信したい場合、あなたができる最善の方法は次のとおりです。
msg.ReplyToList.Add(new System.Net.Mail.MailAddress(email, friendlyName));
これにより、電子メール アカウントで「返信」を押すだけで、フィードバック ページでバンドのファンに返信できますが、実際の電子メールは受信されず、大量のスパムにつながる可能性があります。
制御された環境にいる場合、これはうまく機能しますが、reply-to が指定されている場合でも、いくつかの電子メール クライアントが送信元アドレスに送信するのを見たことに注意してください (どれかはわかりません)。
私は同じ問題を抱えていましたが、gmail のセキュリティ設定に移動し、安全性の低いアプリを許可することで解決しました。ドメニックとドニーのコードは機能しますが、その設定を有効にした場合のみです
(Google に) サインインしている場合は、このリンクをたどって、[安全性の低いアプリのアクセス] の[有効にする]を切り替えることができます。