I'm creating a form that will have an email button to send an allert that the form was filled out. So far I got it to work based on another example on this forum, but it is attaching the file to the email. I don't want that, all I need is to send an email with a predefined Subject line. Here is the test form I'm trying to tweek:
http://dl.dropbox.com/u/5098048/Forum.pdf
Thanks a lot!
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
for a plain mail without attachments use the app.mailMsg method.
app.mailMsg({
bUI: false,
cTo: 'a@b.cd',
cCc: '',
cBcc: '',
cSubject: 'Bla bla bla',
cMsg: 'Message bla bla bla'
});
Views
Replies
Total Likes
Hi,
for a plain mail without attachments use the app.mailMsg method.
app.mailMsg({
bUI: false,
cTo: 'a@b.cd',
cCc: '',
cBcc: '',
cSubject: 'Bla bla bla',
cMsg: 'Message bla bla bla'
});
Views
Replies
Total Likes
This is exactly what I was looking for!
I was looking all over the place, but I couldn't find a place to learn more about this functionality. Is there a particular book or website you would recommend to learn more about JavaScript or FormCalc for LD?
Thanks a lot for the help!
Views
Replies
Total Likes
Hi,
you can find documentation for Designer under this website
http://help.adobe.com/en_US/livecycle/10.0/documentation.html#task=4,5&module=2
In Designer you can use the JavaScript API of Acrobat.
So the Devnet for Acrobat is also a good source.
http://www.adobe.com/devnet/acrobat.html
http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf
Thanks a lot!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies