Author |
|
PeterWR Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 27 April 2005 at 11:41pm | IP Logged
|
|
|
How to add more recipients (TO CC BCC) to the mail ?
I tryed - "aaa <a@a.aa>" & "bbb <b@b.bb>" - does not work, so ?
Best regards
Peter
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 28 April 2005 at 8:17am | IP Logged
|
|
|
"&" is a string concatenation operator in VB, it just joins two strings into single one, i.e. "aaa <a@a.aa>" & "bbb <b@b.bb>" is the same as "aaa <a@a.aa>bbb <b@b.bb>"
To separate email addresses in the string, use comma ",".
Code:
SMTP.ToAddr = "aaa <a@a.aa>, bbb <b@b.bb>" |
|
|
Regards,
Alex
|
Back to Top |
|
|