Using javascript I need a script to AutoFill the Subject in email submit button. using this method app.alert("Launching your e-mail program.", 3, 0)
this.mailDoc(
false,
"", "", "",
"Travel Authorization",
"Please review this Travel Authorization. Thank You"
);
or this method
this.submitForm("mailto:mm [at] mycom [dot] com?"
+ "&cc=gg [at] mycom [dot] com&bcc=john [at] mycom [dot] com"
+ "&subject=good news"
+ "&body=The order is in!"
);
this.mailDoc({
bUI: false,
cTo: "recipientEmailAddress [at] theirIP [dot] com",
cCC: "copyToEmailAddress [at] theirIP [dot] com",
cSubject: "Travel Authorization",
cMsg: "Please review this Travel Authorization. Thank You."
});
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.