如何使用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);
提前谢谢!!