Javascript that emails specific recipients once signature box is complete WITHOUT using fill & sign
Copy link to clipboard
Copied
Hello,
I would like to know if it is possible to create a javascript so that when my boss signs a contract it will automatically email that contract back to me and another person without using fill & sign. I have a subscription to Adobe. And I do use the fill & sign feature when sending to the customer to sign, but with my boss it's more complicated and the best route would be what I am asking.
Please let me know and I thank you for your time.
Copy link to clipboard
Copied
Yes. You can use a script like this in the location you pointed out:
this.mailDoc({cTo: "person1@company.com;person2@company.com", cSubject: "Contract", cMsg: "Here's the signed contract"});
Note that this will NOT send the email automatically, though. It will only create a draft in your boss's email application or website. They will still have to press Send for it to be sent back to you.

