Form with attachments upload and email sending

后端 未结 4 1454
长情又很酷
长情又很酷 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:46

    In addition to Daren's answer, you don't have to hardcode the input and label for your file upload in your view. Just slap this in there :)

    @Html.TextBoxFor(model => model.Attachment, new { type = "file" })
    @Html.LabelFor(model => model.Attachment)
    

提交回复
热议问题