Avatar

Correct answer by
Level 1

radzmar

I wanted to share what I go to work, but we have decided to go another way since our users could not send the form with data through the submit button. I will just have them print to PDF and email to the correct people - clunky I know, but so is the lack of functionality with Adobe Reader.


form1.NewProjectRequestForm.Button1::click - (JavaScript, client)


var oDoc = event.target;



oDoc.mailDoc({


bUI: true,


cTo: "soandso@email.com",


cCc: "soandso@email.com",


cSubject: "New Site Requested:" + " " + SiteCode.rawValue  + " - " + Description.rawValue + " -- " + "Requested by:" + " " + Requestor.rawValue + " @ " + RequestDate.rawValue,


cMsg: "New Site Requested" + " " + SiteCode.rawValue + " - " + Description.rawValue


});


View solution in original post