I hope someone would be able to help:
The (&) character can't be forced into body of the email whenever the Comment2 field has this chracter input. For instance:
example 1:
Input: Long day & Night
output to body email : Long day
example 2:
input: long day and Night
output to body email: long day and Night
Here is the code:
var Comment = this.getField("CarNo").value;
var Comment1= this.getField("PartName").valueAsString;
var Comment2 = this.getField("DescriptionCondition").valueAsString;
var Comment3 = this.getField("From").value;
this.submitForm({cURL:"mailto: "+this.getField("EmailRecip").value
+"?subject=C.A.R Requested by "+Comment3
+"&body= C A R Number: "+Comment+"\r Part Name: "+Comment1+"\r Description of Condition: "+Comment2+"",cSubmitAs:"PDF",cCharset:"utf-8"});
your help is much appreciated.
HT
George