This topic is locked
[SOLVED]

 params("to") supports two email?

2/4/2010 4:14:10 AM
ASPRunnerPro General questions
N
nonmipare author

How can i use params("to") to send email to 2 different email?

Example: params("to")="test@test.com";"info@test.com"

J
Jane 2/4/2010

Here is a sample:

params("to")="test@test.com;info@test.com"
C
clig 2/8/2010



How can i use params("to") to send email to 2 different email?

Example: params("to")="test@test.com";"info@test.com"


you could also concatenate session vars, text etc
="test@test.com" & ";" & "info@test.com" & ";" & Session("UserEmail")