954,566 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

a way to include multiple email addresses as text in asp

Is there a shorter way to include multiple email addresses as text in ASP.

I'm trying to call txtEmail from HTML file, then the strTo is a variable of txtMail.

How would I do it?

Is it possible to include multiple email addresses when I type in as:

Constr strTo = "jadem@avanquestusa.com;syoung@avanquestusa.com;more email addresses to come"

I need some help on this

doraima29
Newbie Poster
19 posts since Oct 2006
Reputation Points: 10
Solved Threads: 0
 

you need to split the string and email it with how many times it was split.

Dim s As String
a = Split(s, ";")
For Each a in s
  'email here
next
SheSaidImaPregy
Veteran Poster
1,080 posts since Sep 2007
Reputation Points: 43
Solved Threads: 68
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You