This code show how to send email multiple attachments from vb.net by using System.Net.Mail
1. This is how you use it
1Dim fileAttch = New ArrayList
2fileAttch.Add("C:\test.csv")
3fileAttch.Add("C:\test2.csv")
4fileAttch.Add("C:\test3.csv")
5
6sendEmail.send(your_emailHost, "no-reply@company.com", your_EmailTo, your_EmailSubject, your_EmailBody, your_EmailccTo, fileAttch)