I have created a simple<cfmail> which sends to multiple users from my website:
PHP Code:
<cfmail
to = "mail1@mail.com,mail2@mail.com,mail3@mail.com,mail4@mail.com"
from = "my_email_add"
type="html"
subject = "#form.subject#">
#form.emailbody#
</cfmail>
It all work completely fine... except each mail recipient recieves a complete list of every other email recipient.
Is this avoidable as it conflicts with my privacy policy.
cheers dudes