คำถามติดแท็ก mailmessage

5
วิธีบันทึกวัตถุ MailMessage ลงในดิสก์เป็นไฟล์ * .eml หรือ * .msg
ฉันจะบันทึกวัตถุ MailMessage ลงในดิสก์ได้อย่างไร วัตถุ MailMessage ไม่เปิดเผยเมธอด Save () ใด ๆ ฉันไม่มีปัญหาถ้ามันบันทึกในรูปแบบใด ๆ * .eml หรือ * .msg มีความคิดอย่างไรที่จะทำสิ่งนี้?
88 c#  .net  email  mailmessage  eml 

4
ส่งอีเมลไปยังผู้รับหลายคนด้วย MailMessage?
ฉันมีผู้รับอีเมลหลายคนที่เก็บไว้ใน SQL Server เมื่อฉันคลิกส่งในหน้าเว็บควรส่งอีเมลถึงผู้รับทุกคน ฉันได้แยกอีเมลโดยใช้;ไฟล์. ต่อไปนี้เป็นรหัสผู้รับรายเดียว MailMessage Msg = new MailMessage(); MailAddress fromMail = new MailAddress(fromEmail); Msg.From = fromMail; Msg.To.Add(new MailAddress(toEmail)); if (ccEmail != "" && bccEmail != "") { Msg.CC.Add(new MailAddress(ccEmail)); Msg.Bcc.Add(new MailAddress(bccEmail)); } SmtpClient a = new SmtpClient("smtp server name"); a.Send(Msg); sreader.Dispose();
87 c#  mailmessage 
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.