Image

Imagekritof wrote in Imagejavascript

Javascript email program

I'm using the line below in a javascript program contained within an html page.

parent.location='mailto:[email protected], [email protected]?subject=TEXT OF SUBJECT&body='+'TEXT OF BODY';

This is used to create a new email using the user's email program. The recipients [email protected] and [email protected] are automatically put into the "To:" of the email. What I want to do is have email_01.aol.com in the "To:" (as is). And I want [email protected] in the "CC:"

What is the correct syntax for this?