Created a submit form. How do I add a cc: email- address to my form. Thank you.
Solved! Go to Solution.
Views
Replies
Total Likes
mailto:john@asdf.com?cc=lisa@adsf.com&subject=Re: New Account Opening&body=Thank%20you%21
Not sure why the envelop icons appeared above...
Views
Replies
Total Likes
Depends on your Submit approach. Are you using the LC Submit button taht comes withthe application? If so, drag a button to the from, mke the Control Type: Submit under the Field tab, and add/modify this script under the Submit tab:
mailto:john@asdf.com?cc=lisa@adsf.com&subject=New Account Opening&body=Thank%20you%21
If you want to use a custom button witrh scripting... add this to the button using the script editor:
var mail;
var address = "main.email.com";
var ccAdd = "cc.email.com";
var sub = “ testing emailing”
var body = “file attached”; //default text in email body
mail = "mailto: " + address + "?cc=" + ccAdd + "&subject=" + sub + "&body=" + body;
cURL: mail,
bEmpty: true,
cSubmitAs: "PDF", //attach PDF to email
cCharset: "utf-8"
});
}
Views
Replies
Total Likes
mailto:john@asdf.com?cc=lisa@adsf.com&subject=Re: New Account Opening&body=Thank%20you%21
Not sure why the envelop icons appeared above...
Views
Replies
Total Likes
Thank you it worked.
Views
Replies
Total Likes
Cool. you're welcome. Please mark answer "Correct" so others know this has been resolved.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies