Description
What are the various ways of sending an envelope with SMS using Docusign Java client? I am aware of the setAdditionalNotifications()
method in com.docusign.esign.model.Signer
class. In which I can assign an object of com.docusign.esign.model.RecipientPhoneNumber
.
But as per the code examples, if we are using an existing Template to create an envelope then we must use an object of com.docusign.esign.model.TemplateRole
instead of 'Signer' object. Since my application uses templates and not hardcoded PDF as documents, I am looking for a method like setAdditionalNotifications() in
TemplateRole` class. But unable to find any.
Can you please suggest the best approach to send an envelope with SMS using an existing template. A code snippet would also help.
TIA