码迷,mamicode.com
首页 > Windows程序 > 详细

C#发送带附件的邮件的代码

时间:2019-04-11 14:47:56      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:file   sage   client   mes   add   txt   cli   ESS   send   

如下的代码是关于C#发送带附件的邮件的代码。

MailMessage m = new MailMessage();
m.Subject = "File attachment!";
m.Body = "See the attached file.";
m.Attachments.Add(new Attachment(@"C:test.txt"));
SmtpClient client = new SmtpClient("smtp.w3mentor.com");
client.Send(m);




 

C#发送带附件的邮件的代码

标签:file   sage   client   mes   add   txt   cli   ESS   send   

原文地址:https://www.cnblogs.com/lpypg/p/10689429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!