- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
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
});
Views
Replies
Total Likes