<CFSET toemail="address1@mydomain.com">
<CFSET bcc="address2@mydomain.com,address3@mydomain.com">
<CFOUTPUT><A HREF = "mailto:#toemail#?subject=test&bcc=#bcc#">Send Email To Found Set</A></CFOUTPUT>
Outlook opens and fills in the To:, Subject: and BCC: fields.
Not quite sure why it wouldn't work for you. But some things to try:
[ul][li]Try a different delimiter. Maybe the address list needs to be separated by semi-colons ( rather than commas for your version of Outlook[/li]
[li]Try URLEncoding the list... just in case (not even sure if it does anything, but couldn't hurt):
Code:
<A HREF = "mailto:#toemail#?subject=test&bcc=#URLEncodedFormat(bcc)#">Send Email To Found Set</A>
[/li]
[li]Try using the list in #BCC# in the mailto, just to make sure there's not a problem with the list itself:
Code:
<A HREF = "mailto:#bcc#?subject=test">Send Email To Found Set</A>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.