Form with attachments upload and email sending

后端 未结 4 1534
长情又很酷
长情又很酷 2021-02-01 06:20

I need to make form with a textarea and an image upload field. When somebody submit it I want it to send email (with text from textarea)

4条回答
  •  眼角桃花
    2021-02-01 06:59

      if (model.Attachment != null && model.Attachment.ContentLength > 0)
        {
        foreach (HttpPostedFileBase item in fileUploader)
          {
    
            var attachment = new Attachment(model.Attachment.InputStream,   model.Attachment.FileName);
            mail.Attachments.Add(attachment);
          }
        }
    

提交回复
热议问题