Hello!
I've a problem with mailto: . All my e-mail adresses use the minus sign (ex: AFE-partenaires [at] myconpagny [dot] com)
The problem is that everytime I try to use the mailto link in my document, the e-mail adresses are incorrect, everything before the minus is not taken in charge.
Sorry for my wonderful english
Thanks for your help!
you can use a regular button with a JavaScript in the click event to mail the form, too.
var myDoc = event.target;
var address = "AFE-partenaires [at] myconpagny [dot] com";
var sub = "Returned form";
var msgBody = "Hello..,\n\nThis is a returned form.\n";
myDoc.mailDoc({
bUI: false,
cTo: address,
cSubject: sub,
cMsg: msgBody,
cSubmitAs: "PDF"
});
Should be working fine!
radzmar
• LoveCycle Blog
Documents you need:
• LiveCycle Designer ES2 Docs