This content has been marked as final.
Show 3 replies
-
1. Re: Is there a way to get an email address entered into a text field added to a submit button url?
Magus069 Jan 24, 2014 11:45 PM (in response to Kayla3536)event.target.submitForm({
cURL: "mailto: Katerina.Aburn.ctt@mda.mil,SPPCOHVVITSupportTeam@mda.mil;?bcc=Doe.Loe. ctt@mda.mil;&subject=write subject here&body=write message here",
bEmpty: true,
cSubmitAs: "PDF",
cCharset: "utf-8"
});
-
2. Re: Is there a way to get an email address entered into a text field added to a submit button url?
Ratnesh Ranjan Mar 5, 2014 6:56 AM (in response to Kayla3536)Hi Kayla3536,
You can also write it on click of a button.
var oDoc = event.target;
oDoc.mailDoc({
bUI: true,
cTo: fldTo.rawValue,
cCC: fldCC.rawValue,
cSubject: fldSubject.rawValue,
cMsg: fldMessage.rawValue
}); -
3. Re: Is there a way to get an email address entered into a text field added to a submit button url?
sonya1 Sep 15, 2014 4:51 AM (in response to Kayla3536)Hi,
var mail;
var address = Mailaddress.rawValue;
var sub = "Subject";
var msgBody = "* * ** * * ";
mail = "mailto: " + address +"?Subject=" + sub +"&body=" + msgBody ;
event.target.submitForm({
cURL: mail,
bEmpty:true,
cSubmitAs: "PDF",
cCharset: "utf-8"
});



