• 欢迎访问开心洋葱网站,在线教程,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站,欢迎加入开心洋葱 QQ群
  • 为方便开心洋葱网用户,开心洋葱官网已经开启复制功能!
  • 欢迎访问开心洋葱网站,手机也能访问哦~欢迎加入开心洋葱多维思维学习平台 QQ群
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏开心洋葱吧~~~~~~~~~~~~~!
  • 由于近期流量激增,小站的ECS没能经的起亲们的访问,本站依然没有盈利,如果各位看如果觉着文字不错,还请看官给小站打个赏~~~~~~~~~~~~~!

使用C#发送带有内置图片的html格式邮件

其他 水墨上仙 2935次浏览

下面的代码用于c#发送html格式的邮件,并且可以将图片附加到邮件一起发出

MailMessage m = new MailMessage();
m.From = new MailAddress("ir@75271.com", "Raja Item");
m.To.Add(new MailAddress("su@75271.com", "Sekaran Uma"));
m.Subject = "html email with embedded image coming!";
 
// Create the HTML message body
// Reference embedded images using the content ID
string htmlBody = "

Picture

";
AlternateView avHtml = AlternateView.CreateAlternateViewFromString
    (htmlBody, null, MediaTypeNames.Text.Html);
 
// Create a LinkedResource object for each embedded image
LinkedResource pic1 = new LinkedResource("pic.jpg", MediaTypeNames.Image.Jpeg);
pic1.ContentId = "Pic1";
avHtml.LinkedResources.Add(pic1);
 
// Create an alternate view for unsupported clients
string textBody = "You must use an e-mail client that supports HTML messages";
AlternateView avText = AlternateView.CreateAlternateViewFromString
    (textBody, null, MediaTypeNames.Text.Plain);
 
m.AlternateViews.Add(avHtml);
m.AlternateViews.Add(avText);
 
// Send the message
SmtpClient client = new SmtpClient("smtp.75271.com");
client.Send(m);


开心洋葱 , 版权所有丨如未注明 , 均为原创丨未经授权请勿修改 , 转载请注明使用C#发送带有内置图片的html格式邮件
喜欢 (0)
加载中……