My Personal Blog's
Posts tagged System.Net.Mail.Attachment
Send Email with multiple attachments from VB.NET
Jun 3rd
This code show how to send email multiple attachments from vb.net by using System.Net.Mail
1. This is how you use it
Dim fileAttch = New ArrayList
fileAttch.Add("C:\test.csv")
fileAttch.Add("C:\test2.csv")
fileAttch.Add("C:\test3.csv")
sendEmail.send(your_emailHost, "no-reply@company.com", your_EmailTo, your_EmailSubject, your_EmailBody, your_EmailccTo, fileAttch)







