Hi Abdul,Try this. Create a regular button and in the click event put
this script.var mail;var add = mailAddress.rawValue; // the to mail
address you want.var msg = "Sample message"; // This is the body of the
mail Customize it as per need by fetching value from different fields
var sub = "Sample Subject"; // This is the subject of the
mail.event.target.mailDoc({ bUI: true, cTo: add, cCc: '', cBcc: '',
cSubject: sub, cMsg: msg });Thanks,Bibhu.