博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#之SYSTEM.NET.MAIL类演示例子
阅读量:6040 次
发布时间:2019-06-20

本文共 1626 字,大约阅读时间需要 5 分钟。

比较顺利。。。

1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Threading.Tasks; 9 using System.Windows.Forms;10 using System.Net.Mail;11 12 namespace WindowsFormsApplication213 {14     public partial class Form1 : Form15     {16         public Form1()17         {18             InitializeComponent();19         }20 21         private void button1_Click(object sender, EventArgs e)22         {23             string file = "E:\\bar.txt";24             MailAddress from = new MailAddress("aguncn@163.com");25             MailAddress to = new MailAddress(textBox2.Text);26             MailMessage message = new MailMessage(from, to);27             message.Subject = textBox1.Text;28             message.Body = richTextBox1.Text;29             Attachment myAttachment = new Attachment(file, System.Net.Mime.MediaTypeNames.Application.Octet);30             System.Net.Mime.ContentDisposition disposition = myAttachment.ContentDisposition;31             disposition.CreationDate = System.IO.File.GetCreationTime(file);32             disposition.ModificationDate = System.IO.File.GetLastWriteTime(file);33             disposition.ReadDate = System.IO.File.GetLastAccessTime(file);34             message.Attachments.Add(myAttachment);35             SmtpClient client = new SmtpClient("smtp.163.com", 25);36             client.Credentials = new System.Net.NetworkCredential("aguncn@163.com", "********");37             client.Send(message);38             MessageBox.Show("发送成功");39 40         }41     }42 }

转载地址:http://mfrhx.baihongyu.com/

你可能感兴趣的文章
Android 测试工具集02
查看>>
【CF】148D Bag of mice
查看>>
Wi-Fi万能钥匙:说是破解,其实有危险(转)
查看>>
微软历史最高市值是多少?
查看>>
Boost中的智能指针(转)
查看>>
EntityFramework 实体拆分和表拆分
查看>>
web应用程序访问串口
查看>>
简介数据库日志文件的增长
查看>>
Weblogic
查看>>
Don't Repeat Yourself (不要重复你自己)
查看>>
json \u unicode字符串转化 c++
查看>>
基于HTML5 SVG和CSS3炫酷蹦床式图片切换特效
查看>>
C语言指针的初始化和赋值
查看>>
AsyncTask測试多任务
查看>>
OpenGL------三维变换
查看>>
Android Studio系列教程一--下载与安装
查看>>
Python 变量类型
查看>>
CentOS6无法本地登陆,ssh远程登陆没问题
查看>>
总结 xib
查看>>
确定当前数据和索引的总大小
查看>>