I need to send out
860 emails using CFMAIL. Works fine with a small list. I'm not sure, but I think
I read somewhere that CFserver can handle something like 40 at a time. Any
suggestions on how to send this huge amount out?
I'm using CFserver
4.5 and SQL database and a company mail server.
The following is the
code I'm using to send it out to the list without every recipient being able to
see each other (BCC).
<CFMAIL
TO=" "
BCC="#contactList#, [EMAIL PROTECTED]"
FROM="[EMAIL PROTECTED]"
SUBJECT="#form.subject#"
SERVER="mail.server.net"
TYPE="HTML">
#form.message#
</CFMAIL>
TO=" "
BCC="#contactList#, [EMAIL PROTECTED]"
FROM="[EMAIL PROTECTED]"
SUBJECT="#form.subject#"
SERVER="mail.server.net"
TYPE="HTML">
#form.message#
</CFMAIL>
Thank you.
Arun.
