ส่งอีเมลใน. NET ผ่าน Gmail


876

แทนที่จะอาศัยโฮสต์ของฉันเพื่อส่งอีเมลฉันกำลังคิดถึงการส่งข้อความอีเมลโดยใช้บัญชีGmailของฉัน อีเมลเหล่านี้เป็นอีเมลส่วนตัวในวงที่ฉันเล่นในรายการ

เป็นไปได้ที่จะทำหรือไม่


1
< systemnetmail.com > อาจเป็นเว็บไซต์ที่สมบูรณ์ที่สุดที่ไร้สาระซึ่งอุทิศให้กับเนมสเปซ. NET เดียว ... แต่มีทุกสิ่งที่คุณอยากรู้เกี่ยวกับการส่งจดหมายผ่านทาง NET ไม่ว่าจะเป็น ASP.NET หรือเดสก์ท็อป < systemwebmail.com > เป็น URL ดั้งเดิมในโพสต์ แต่ไม่ควรใช้สำหรับ. NET 2.0 ขึ้นไป
Adam Haile

13
หากคุณกำลังใช้ ASP.Net Mvc ฉันขอแนะนำให้ดูที่ MvcMailer: github.com/smsohan/MvcMailer/wiki/MvcMailer-Step-by-Step-Guide
noocyte

ฉันมีตัวอย่างที่ดีของวิธีการทำสิ่งนี้บนเว็บไซต์ของฉันjarloo.com/gmail-in-c
Kelly

วิธีการส่งไฟล์โดยใช้รหัสนี้
Ranadheer Reddy

เป็นไปได้ที่ซ้ำกันของการส่งอีเมลผ่านเซิร์ฟเวอร์ Gmail SMTP ด้วย C #
George Duckett

คำตอบ:


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
คุณยังสามารถทำให้ผู้ใช้ไม่ได้ลงชื่อเข้าใช้ด้วยข้อผิดพลาดหาก Google เพียงตัดสินใจทันทีว่าคุณส่งจำนวนมากเกินไปในช่วง xx ที่ผ่านมาจำนวนนาที คุณควรเพิ่มการลองส่งทุกครั้งหากเกิดข้อผิดพลาดขึ้นชั่วขณะแล้วลองอีกครั้ง
46499 Jason สั้นสั้น

72
หมายเหตุที่น่าสนใจ: หากคุณสลับ 'UseDefaultCredentials = false' และ 'Credentials = ... ' จะไม่ตรวจสอบสิทธิ์
Nathan Wheeler

13
ไม่มีปัญหากับ SPF โดยใช้วิธีนี้ ไคลเอนต์อีเมลทุกคนสามารถกำหนดค่าให้ทำสิ่งนี้ คุณอาจได้รับปัญหาหากคุณใช้เซิร์ฟเวอร์ของคุณเอง (เช่นอย่างอื่นsmtp.gmail.com) กับsomething@gmail.comในฐานะผู้ส่ง Btw: smtp.gmail.comเขียนทับที่อยู่ผู้ส่งโดยอัตโนมัติหากไม่ใช่ของคุณ
Meinersbur

24
ฉันมีปัญหาในการทำงานนี้แม้จะพยายามปรับแต่งหลายอย่างก็ตาม ตามที่แนะนำในโพสต์ที่เกี่ยวข้องฉันพบว่าจริงๆแล้วมันเป็นโปรแกรมป้องกันไวรัสของฉันที่ป้องกันไม่ให้ส่งอีเมลได้สำเร็จ โปรแกรมป้องกันไวรัสที่น่าสงสัยคือ McAffee และ "Access Protection" นั้นมีหมวดหมู่ "Antivirus Standard Protection" ที่มีกฎ "ป้องกันการส่งเมลจำนวนมากจากการส่งอีเมล" กฎ การปรับเปลี่ยน / การปิดใช้งานกฎนั้นทำให้รหัสนี้ใช้งานได้สำหรับฉัน!
yourbuddypal

18
ฉันได้รับข้อความแสดงข้อผิดพลาด 5.5.1 ที่จำเป็นต้องมีการตรวจสอบสิทธิ์จนกว่าฉันจะรู้ว่าฉันกำลังทดสอบด้วยบัญชี (ส่วนตัวของฉัน) ที่เปิดใช้งานการตรวจสอบสิทธิ์ด้วยสองปัจจัย เมื่อฉันใช้บัญชีที่ไม่มีบัญชีก็ใช้งานได้ดี ฉันสามารถสร้างรหัสผ่านสำหรับแอปพลิเคชันของฉันที่ฉันทดสอบจากบัญชีส่วนตัวของฉันได้ แต่ฉันไม่ต้องการทำเช่นนั้น
Nick DeVore

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=thป้อนคำอธิบายรูปภาพที่นี่

ป้อนคำอธิบายรูปภาพที่นี่

เมื่อวันที่มีนาคม 2559, google เปลี่ยนตำแหน่งการตั้งค่าอีกครั้ง!


4
สิ่งนี้ใช้ได้สำหรับฉัน และก็เกี่ยวกับ ไม่แน่ใจว่าฉันต้องการปิดการรักษาความปลอดภัยนั้น อาจต้องคิดใหม่ ...
Sully

4
จากจุดความปลอดภัยของมุมมองที่ดีกว่าเพื่อเปิดใช้งานการยืนยันแบบสองขั้นตอนจากนั้นสร้างและใช้รหัสผ่านสำหรับแอป - ดูวิธีส่งอีเมลใน. Net ตามนโยบายความปลอดภัยใหม่ได้อย่างไร
Michael Freidgeim

2
@BCS Software โปรแกรม inmy ผู้ใช้แทรกอีเมลใด ๆ ที่โปรแกรมของฉันต้องใช้เพื่อส่งข้อความ ดังนั้นฉันจะทำให้ผู้ใช้อีเมลสามารถส่งอีเมลได้อย่างไรแม้ว่าจะมีการเปิดใช้งานการตรวจสอบสิทธิ์แบบ 2 ปัจจัยหรือไม่
Alaa

การตั้งค่านี้เป็นการตั้งค่าเดียวกันกับที่คุณต้องแก้ไขหากคุณต้องการใช้ไคลเอนต์ Microsoft Outlook (บนเดสก์ท็อป, โทรศัพท์มือถือ, ฯลฯ ) เพื่อส่ง / รับอีเมลผ่าน GMail ของ Google
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 อาจบล็อกความพยายามในการลงชื่อเข้าใช้จากแอพหรืออุปกรณ์บางอย่างที่ไม่ได้ใช้มาตรฐานความปลอดภัยที่ทันสมัย เนื่องจากแอปและอุปกรณ์เหล่านี้ง่ายต่อการเจาะเข้าไปการบล็อกพวกเขาจึงช่วยให้บัญชีของคุณปลอดภัยยิ่งขึ้น

ตัวอย่างของแอพที่ไม่รองรับมาตรฐานความปลอดภัยล่าสุด ได้แก่ :

  • แอพ Mail บน iPhone หรือ iPad ที่มี iOS 6 หรือต่ำกว่า
  • แอปอีเมลบนโทรศัพท์ Windows ของคุณก่อนหน้ารุ่น 8.1
  • เดสก์ท็อปเมลไคลเอ็นต์บางตัวเช่น 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);
    }
}

17

เพื่อให้มันใช้งานได้ฉันต้องเปิดใช้งานบัญชี Gmail ของฉันทำให้แอพอื่นสามารถเข้าถึงได้ นี้จะกระทำกับ "เปิดใช้งานแอปที่ปลอดภัยน้อย" และยังใช้ลิงค์นี้: https://accounts.google.com/b/0/DisplayUnlockCaptcha


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

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 = ใหม่ 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 # ในตัวอย่างด้านล่างนี้ฉันใช้เซิร์ฟเวอร์ smtp ของ Google

รหัสนี้เป็นคำอธิบายที่ค่อนข้างดีแทนที่อีเมลและรหัสผ่านด้วยค่าอีเมลและรหัสผ่านของคุณ

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.It ทำงานได้ดีสำหรับฉัน
Jui Test

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 ของคุณและคุณสามารถใช้รหัสผ่านนี้แทนรหัสผ่านจริงเพื่อส่งอีเมลแม้ว่าคุณจะใช้การยืนยันสองขั้นตอนก็ตาม


3

การเปลี่ยนผู้ส่งในอีเมล Gmail / Outlook.com:

เพื่อป้องกันการปลอมแปลง - Gmail / Outlook.com จะไม่อนุญาตให้คุณส่งชื่อบัญชีผู้ใช้ตามอำเภอใจ

หากคุณมีผู้ส่งจำนวน จำกัด คุณสามารถทำตามคำแนะนำเหล่านี้จากนั้นตั้งค่าFromฟิลด์เป็นที่อยู่นี้: การส่งอีเมลจากที่อยู่อื่น

หากคุณต้องการที่จะส่งจากที่อยู่อีเมลโดยพลการ (เช่นแบบฟอร์มข้อเสนอแนะบนเว็บไซต์ที่ผู้ใช้ป้อนอีเมลของพวกเขาและคุณไม่ต้องการให้พวกเขาส่งอีเมลถึงคุณโดยตรง) เกี่ยวกับสิ่งที่ดีที่สุดที่คุณสามารถทำได้:

        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:

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

ปัญหาสำหรับฉันคือรหัสผ่านของฉันมี blackslash "\"อยู่ในนั้นซึ่งฉันคัดลอกวางโดยไม่ทราบว่ามันจะทำให้เกิดปัญหา


1

การคัดลอกจากคำตอบอื่นวิธีการข้างต้นใช้งานได้ แต่ gmail จะแทนที่อีเมล "จาก" และ "ตอบกลับ" เสมอโดยใช้บัญชี gmail ที่ส่งจริง เห็นได้ชัดว่ามีการแก้ไขอย่างไรก็ตาม:

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

"3. ในแท็บบัญชีคลิกที่ลิงค์" เพิ่มที่อยู่อีเมลอื่นที่คุณเป็นเจ้าของ "จากนั้นยืนยัน"

หรืออาจจะเป็นแบบนี้

อัปเดต 3: Reader 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.