Avatar

Level 2

Hi,

Write this script in click event of  the submit button

var mail;
var saddress = "Reciever mail id";
var subj = "Mail subject";
mail = "mailto: " + saddress + "?Subject=" + subj;
event.target.submitForm({
cURL: mail,
bEmpty: true,
cSubmitAs: "PDF",
cCharset: "utf-8"
});

Regards,

Sony