CFMAIL does not deliver to recipients in CC List
I simply cannot get the CC part of the code below to work. The message is delivered to three recipients, but not delivered to the CC recipient.
<cfquery name="GetTOEmails" datasource="PURCH">
SELECT ApproverEmail
FROM [PurchaseRequisitions].[dbo].[Approvers]
WHERE TierLevel='01'
</cfquery>
<cfmail
query="GetTOEmails"
from="My Domain User <mydomainuser@domain.com>"
to="#GetTOEmails.ApproverEmail#"
cc="another@domain.com"
subject="Another Test"
server="myserver"
username="myuser"
password="mypassword"
priority="highest"
port="25"
type="html">
<span>Test from A1</span>
</cfmail>
Sent from A1
