How do I format this so that I can have this script mail to 2 addresses?? The mailto: isnt working with 2 email addresses in there. Only the 1st email address gets the email. Help! =(
Dim from As String = TextBox2.Text
Dim mailto As String = "
[email protected],
[email protected]"
Dim subject As String = "TEST"
Dim body As String = TextBox1.Text & vbCrLf & TextBox2.Text
SmtpMail.SmtpServer = "blah.blah.local"
SmtpMail.Send(from, mailto, subject, body)