With much help from here in the past (thank you!), we've been using a form with a custom submit button, and I'm needing to add a cc. I did add a var vCC = first.last@email.com, but no luck in placing it within this event properly. What is the right way to add an additional cc? Thank you!
event.target.submitForm({cURL:"mailto: "+ vEmail +"?subject=" + vSubject +"&body=" + vBody,cSubmitAs:"PDF",cCharset:"utf-8"});obj.close();
Solved! Go to Solution.
event.target.submitForm({cURL
:"mailto: "+ vEmail + "?subject=" + vSubject +"&body=" + vBody + "&cc=" + vCC, cSubmitAs:"PDF",cCharset:
"utf-8"});
Just add "&cc=" + vCC to before "&body=" for example
event.target.submitForm({cURL
:"mailto: "+ vEmail + "?subject=" + vSubject +"&body=" + vBody + "&cc=" + vCC, cSubmitAs:"PDF",cCharset:
"utf-8"});
Thank you Jenn and dohanlon, it's working great now, appreciate the help.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies