[thelist] help with ASP

JCanfield at magisnetworks.com JCanfield at magisnetworks.com
Wed May 29 19:06:06 CDT 2002


> Anyone have a clue whey this script won't send the BCC:

> 	BCC_List = "dwmerritt at cox.net"
> 	BCC_List = "contact at davesframes.net"
> 	Result = SendMail(Receiver, Subject, Content, Title, Body, From,
CC_List, BCC_List)

It looks like you've got the syntax correct, although you're not building
the BCC_List, you're replacing the value "dwmerritt at cox.net" with
"contact at davesframes.net" at the end. Should be

BCC_List = "dwmerritt at cox.net"
BCC_List = BCC_List & ", contact at davesframes.net"

Is the BCC not working at all, or was it just your address that wasn't
receiving? If the latter, that's what's wrong.

joel



More information about the thelist mailing list