Form with attachments upload and email sending

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

    MailMessage class in .NET should be able to handle that for you:

    http://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage.attachments.aspx

    Or are you looking for something more specific to your actual code? (e.g. how to read the file and add it to the attachment)?

提交回复
热议问题