Hi, Paste the following code in the preSubmit event of the EmailSubmit
button control.var strSubject = "Access Request form for " +
ApplicantName.rawValue;var strBody = "This is Body";var
strToEmailAddress =
"carolyn.r.mullenbach@wellsfargo.com";this.resolveNode("#event").submit.target=
"mailto:" + strToEmailAddress + "?subject=" + strSubject + "&body=" +
strBody;If you want to send the PDF file as an attachment in the email,
you need to place a Button control on the form instead of Email Submit...