How to Send Email With Attachment In Asp.Net

后端 未结 6 964
梦谈多话
梦谈多话 2020-12-16 15:29

I need to attach an image with my email in asp.net the file is already added in the solution explorer but I dont know how to add this with my email please guide me

M

6条回答
  •  没有蜡笔的小新
    2020-12-16 16:24

    Did you check out MailMessage.Attachments property (see MSDN)?

    // create attachment and set media Type
    //      see http://msdn.microsoft.com/de-de/library/system.net.mime.mediatypenames.application.aspx
    Attachment data = new Attachment(
                             "PATH_TO_YOUR_FILE", 
                             MediaTypeNames.Application.Octet);
    // your path may look like Server.MapPath("~/file.ABC")
    message.Attachments.Add(data);
    

提交回复
热议问题