send reminder emails to signers and the package owner for an existing package
Tuesday, June 8, 2021 at 07:41amHi,
I have created a package in Onespan, during which an email gets generated. But now, I want to send a reminder notification email to signers of this existing package, with a link to the onespan docs. How can I do this in Java?
Reply to: send reminder emails to signers and the package owner for an existing package
Tuesday, June 8, 2021 at 08:33amHi Evangeline,
You can manually resend the invitation with the following code:
eslClient.getPackageService().notifySigner(packageId, "[email protected]", "HELLO SIGNER" );
Note:
(1)The third parameter can override the signer level message.
(2)Owner won't receive the invitation email (It's a general limitation).
Duo