I have created a form in Adobe pro 8. My objective is to have a button included on the form that when clicked will initiate an email with the subject line auto filled from one of the text fields. I also do not want the adobe file attached in the email. This is solely used as a notification e-mail with the subject line populated. This is what I have so far. Thanks
this.mailDoc({
cTo: "",
var cSubject = this.getField("act number").value;
cMsg: "Please review this Action number in CAT. Thank You."
});
George