Skip to main content
Participant
August 8, 2024
Question

Mailto PDF

  • August 8, 2024
  • 1 reply
  • 383 views

Guten Morgen liebes Forum,
ich bin neu hier und ziemlich unbefleckt was JavaScript angeht.
Habe ein Dokument, was ich gern per mail verschicken möchte.

Problem ich habe eine vorgefertigte Signatur in Outlook hinterlegt, diese wird aber nicht genutzt

this.mailDoc({
bUI: false,
cTo: "EmpfängerMailAdresse",
cCC: "cc email address",
cSubject: "Anforderung ",
cMsg: "Bitte um weitere Bearbeitung." <- dieser Text sollte eigentlich in die Signatur.
});

Hat jemand eine Idee was ich ändern muss?
Danke

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
August 8, 2024

You can't do anything in your code to include the signature.

What you can try, though, is submit the file using a mailto command, instead of using a script.

So set the action to submit to a URL and then enter this:

mailto:me@server.com?subject=Subject%20line&body=Message%20Body

(you can find the full syntax online)

This should cause the email to be generated in your default email client, and maybe it will also cause the signature to be included in the draft. If not, then it's not possible to do it from within Acrobat.