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
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);