我如何使用 Visual Studio 2005 为 pdf 、 doc 和 docx 提供文件以附加到 asp.net 和 c# 中的电子邮件的内容类型。
当我尝试给予contenttype = "application/pdf"
或"application/word"
。该文件保存为"applicationpdf"
和"applicationword"
ContentType ct = new ContentType();
Attachment attach = new Attachment(myFile.InputStream, ct);
message.Attachments.Add(attach);
先感谢您!!