summaryrefslogtreecommitdiff
path: root/texmf-dist/doc/latex/docassembly/examples/mail-doc.tex
diff options
context:
space:
mode:
Diffstat (limited to 'texmf-dist/doc/latex/docassembly/examples/mail-doc.tex')
-rw-r--r--texmf-dist/doc/latex/docassembly/examples/mail-doc.tex31
1 files changed, 31 insertions, 0 deletions
diff --git a/texmf-dist/doc/latex/docassembly/examples/mail-doc.tex b/texmf-dist/doc/latex/docassembly/examples/mail-doc.tex
new file mode 100644
index 00000000..6240c945
--- /dev/null
+++ b/texmf-dist/doc/latex/docassembly/examples/mail-doc.tex
@@ -0,0 +1,31 @@
+\documentclass{article}
+\usepackage{docassembly}
+\usepackage{lipsum}
+
+\hypersetup{pdfpagemode=UseNone}
+
+% Look in the Adobe Acrobat JavaScript manual under the doc.mailDoc to see all the possible parameters.
+\begin{docassembly}
+% Prior to sending this document, you can attach files this this PDF
+% Refer to attach-files.tex
+var retn = \attachFile({
+ cName: "AdobeDon",
+ cDIPath: "graphics/AdobeDon.pdf"
+});
+% The next line creates a meaningful description of the attachment
+if (retn) this.getDataObject("AdobeDon").description="The one and only AdobeDon";
+\executeSave();
+\mailDoc({
+ bUI: false,
+ cTo: "dpstory@hotmail.com",
+ cSubject: "I'm testing things out",
+ cMsg: "Good to hear from you again Don. I'm emailing this PDF, attached, for your review."
+});
+%\executeSave();
+\end{docassembly}
+
+\begin{document}
+
+\lipsum[1-30]
+
+\end{document} \ No newline at end of file