C# 使用SMTP发送附件

以下代码除了实现发送简单的邮件以外,还包括了发送附件。From图没有贴出,上面就两按钮,一个“添加附件”、一个“发送”。点击添加附件选择文件, 文件路径全存储在listbox1中。在发送按钮方法中,把listbox1所有的文件添加到mailmessage对象里作为邮件发送出去了,请看代码

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using System.Net.Mail;
  9. using System.Net;
  10. using System.Net.Security;
  11. using System.IO;
  12. using System.Net.Mime;
  13. namespace SmtpTest
  14. {
  15. public partial class Form1 : Form
  16. {
  17. public Form1()
  18. {
  19. InitializeComponent();
  20. }
  21. private void button1_Click(object sender, EventArgs e)
  22. {
  23. try
  24. {
  25. //定义一个mail对象
  26. MailMessage mailmessage = new MailMessage(““, ““, “this is a test”, “yes!test!”);
  27. //from email,to email,主题,邮件内容
  28. mailmessage.Priority = MailPriority.Normal; //邮件优先级
  29. SmtpClient smtpClient = new SmtpClient(“smtp.163.com”, 25); //smtp地址以及端口
  30. smtpClient.Credentials = new NetworkCredential(“ttlsa.com”, “xxxxxx”);//smtp用户名密码
  31. smtpClient.EnableSsl = true//启用ssl
  32. //添加附件
  33. Attachment attachment =null;
  34. if(listBox1.Items.Count>0)
  35. {
  36. for (int i = 0; i < listBox1.Items.Count; i++)
  37. {
  38. string pathFileName = listBox1.Items[i].ToString();
  39. string extName = Path.GetExtension(pathFileName).ToLower(); //获取扩展
  40. if(extName==”.rar”||extName==”.zip”) //.rar和.zip的文件属于压缩文件类型
  41. {
  42. attachment = new Attachment(pathFileName,MediaTypeNames.Application.Zip);
  43. }else
  44. {
  45. attachment = new Attachment(pathFileName,MediaTypeNames.Application.Octet);
  46. }
  47. //设置附件的MIME信息
  48. ContentDisposition cd = attachment.ContentDisposition;
  49. cd.CreationDate = File.GetCreationTime(pathFileName);//设置附件的创建时间
  50. cd.ModificationDate = File.GetLastWriteTime(pathFileName);//设置附件的修改时间
  51. cd.ReadDate = File.GetLastAccessTime(pathFileName);//设置附件的访问时间
  52. mailmessage.Attachments.Add(attachment);//将附件添加到mailmessage对象
  53. }
  54. }
  55. smtpClient.Send(mailmessage);
  56. MessageBox.Show(“发送成功”);
  57. }
  58. catch (SmtpException se)
  59. {
  60. MessageBox.Show(se.StatusCode.ToString());
  61. }
  62. }
  63. //添加附件,把文件添加到listbox中
  64. private void button2_Click(object sender, EventArgs e)
  65. {
  66. OpenFileDialog opd = new OpenFileDialog();//定义一个选择文件的对话框
  67. opd.Multiselect = true;//允许选择多个文件
  68. opd.CheckFileExists = true;//检查文件是否存在
  69. opd.ValidateNames = true;//检查文件名的可用性
  70. opd.ShowDialog();//打开对话框
  71. if(opd.FileNames.Length>0)//将选择的文件路径写入listbox中
  72. {
  73. listBox1.Items.AddRange(opd.FileNames);
  74. }}}}

转载请注明出处:https://stgod.com/93/

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: