代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Asp.Net
】
.net发送带图片格式Email
作者:
dezai
/ 发布于
2014/7/30
/
936
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net.Mail; public class Mail { public void sendMail(string[] to, string[] cc, string subject, string body,string attachfile) { MailMessage mail = new MailMessage(); mail.From = new MailAddress("abc@def.com"); if (to != null) foreach (string _to in to) { if (_to != "") { mail.To.Add(_to); } } if (cc != null) foreach (string _cc in cc) { if (_cc != "") { mail.CC.Add(_cc); } } //""前加@,""内的内容就不用改了 attachFile("E:\\test\\class\\Study\\studyWebApplication\\BLL\\office\\picture\\head.jpg", "head", 0,true,ref mail); attachFile(@"E:\test\class\Study\studyWebApplication\BLL\office\picture\taile.jpg", "taile", 1, true, ref mail); if (attachfile != "") { attachFile(attachfile, "file", 2, false, ref mail); } mail.Subject = subject; //mail以html的格式发送 mail.IsBodyHtml = true; mail.Body = string.Format(@"<table><tr><td><img src=""{0}""/></td></tr><tr><td valign=top style=""height:200px"">" + body + @"</td></tr><tr><td><img src=""{1}""/></td></tr></table>", "cid:" + mail.Attachments[0].ContentId, "cid:" + mail.Attachments[1].ContentId); var s = new SmtpClient(); s.Port = 25; //邮件服务器地址 s.Host = "111.111.111.111"; s.Send(mail); } //ref 传引用,如对象等都要用这个形式 //ContentDisposition.Inline用来说明是以内联还是附件的方式发送 private void attachFile(string attachfile, string cid, int i,bool disattach,ref MailMessage mail) { Attachment attachFile = new Attachment(attachfile); mail.Attachments.Add(attachFile); mail.Attachments[i].ContentId = cid; mail.Attachments[i].ContentDisposition.Inline = disattach; mail.Attachments[i].NameEncoding = mail.SubjectEncoding = mail.BodyEncoding = Encoding.UTF8; } }
试试其它关键字
同语言下
.
gzip压缩
.
实现http多线程断点续传下载文件
.
实现多线程断点续传下载大文件
.
生成字符串的 CheckSum
.
根据 UserAgent 获取浏览器的类型和版本
.
根据 Agent 判断是否是智能手机
.
隐藏手机号中间四位为*方法
.
合并图片(二维码和其他图片合并)
.
ASP.NET CORE中判断是否移动端打开网页
.
ASP.NET(C#)实现页面计时(定时)自动跳转
可能有用的
.
gzip压缩
.
实现http多线程断点续传下载文件
.
实现多线程断点续传下载大文件
.
生成字符串的 CheckSum
.
根据 UserAgent 获取浏览器的类型和版本
.
根据 Agent 判断是否是智能手机
.
隐藏手机号中间四位为*方法
.
合并图片(二维码和其他图片合并)
.
ASP.NET CORE中判断是否移动端打开网页
.
ASP.NET(C#)实现页面计时(定时)自动跳转
dezai
贡献的其它代码
(
1065
)
.
双色球
.
列出所有物理网络适配器
.
快乐数的 Python 实现
.
计算当月还剩天数
.
猜属相
.
二十四小时时钟
.
每日一语
.
很酷的日历
.
超长日历表单
.
最简单的时钟
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3