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