Skip to main content
Known Participant
August 22, 2023
Question

Javascript that emails specific recipients once signature box is complete WITHOUT using fill & sign

  • August 22, 2023
  • 1 reply
  • 368 views

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.

 

 

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
August 22, 2023

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.