forum

Home / DeveloperSection / Forums / Send Uploaded File as attachment

Send Uploaded File as attachment

Anonymous User 1737 25-Aug-2014

I am trying to get the uploaded file to be sent as an attachment in my ashx file, Here is the code I am using

        HttpPostedFile fileupload = context.Request.Files[0];
        //filename w/o the path
        string file = Path.GetFileName(fileupload.FileName);
        string saveLocation = HttpContext.Current.Server.MapPath("UploadDirName") + "\\" + file;
        fileupload.SaveAs(saveLocation);           
        MailMessage message = new MailMessage();
        //*****useless stuff********
        message.To.Add("abc@xxx.com");
        message.Subject = "test";
        message.From = new MailAddress("test@aaa.com");
        message.IsBodyHtml = true;
        message.Body = "testing";
         //*****useless stuff********
        //Fault line
        message.Attachments.Add(new Attachment(saveLocation, MediaTypeNames.Application.Octet))
        //Send mail
        SmtpClient smtp = new System.Net.Mail.SmtpClient("xxxx", 25);
        smtp.UseDefaultCredentials = false;
        smtp.Credentials = new NetworkCredential("xxx", "xxxx");
        smtp.Send(message);

I am able to send the email w/o the attachment. 

Do I need to save the file first? and then add to attachment ? 

I haven't worked much on form processing in asp.net.


c# c# 
Updated on 25-Aug-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By