I am looking for assistance on script to add another username as the sender of the email for a submit button.
radzmar • LoveCycle Blog Documents you need: • LiveCycle Designer ES2 Docs
u can use the below script for a submit button in click event,
var lEmail='test [at] gmail [dot] com;test1 [at] yahoo [dot] com';
var myDoc = event.target;
try {
myDoc.mailDoc({
bUI: false,
cTo: lEmail,
cCC: "",
cSubject: "Subject",
cMsg: "..."
});
} catch (e) {}
u can add the sender id's to the lEmail variable with a semicolon as separator.
Thanks,
Madhu.