c# – 如何为电子邮件(System.Net.Mail.SmtpClient)附件设置一个好名称

我在C#中使用System.Net.Mail.SmtpClient发送附件.
附件名称与我传递给附件构造函数文件名相同
myMail.Attachments.Add(new Attachment(attachmentFileName));

我如何设置附件的“好”名称?我当前拥有的名称基本上是数字ID,表示附加了哪个报告.我的用户正在寻找更友好的东西,比如“results.xls”.

解决方法

Attachment.Name Property

Gets or sets the MIME content type name value in the content type associated with this attachment.

您可以将Attachment .Name属性设置为您喜欢的任何内容.在最后一个链接的示例中,您可以:

// Create  the file attachment for this e-mail message.
Attachment data = new Attachment(file,MediaTypeNames.Application.Octet);
data.Name = "VeryNiceName.dat"; //(not in original example)
...
message.Attachments.Add(data);

相关文章

在项目中使用SharpZipLib压缩文件夹的时候,遇到如果目录较深,则压缩包中的文件夹同样比较深的问题。比...
项目需要,几十万张照片需要计算出每个照片的特征值(调用C++编写的DLL)。 业务流程:选择照片...
var array = new byte[4]; var i = Encoding.UTF8.GetBytes(100.ToString("x2"));//...
其实很简单,因为Combox的Item是一个K/V的object,那么就可以把它的items转换成IEnumerable<Dic...
把.net4.6安装包打包进安装程序。 关键脚本如下: 头部引用字符串对比库 !include "WordFunc....
项目需求(Winform)可以批量打印某个模板,经过百度和摸索,使用iTextSharp+ZXing.NetʿreeSp...