DocuSign使用PHP和Laravel API签名模板的自动提醒[已关闭]

c9qzyr3d  于 2023-05-27  发布在  PHP
关注(0)|答案(1)|浏览(120)

**已关闭。**此问题为not about programming or software development。目前不接受答复。

这个问题似乎不是关于a specific programming problem, a software algorithm, or software tools primarily used by programmers的。如果你认为这个问题与another Stack Exchange site的主题有关,你可以留下评论,解释在哪里可以回答这个问题。
5天前关闭。
这篇文章是编辑并提交审查2天前.
Improve this question
如何编写PHP代码来设置DocuSign自动提醒,以便使用PHP和Laravel API对模板进行签名

vjhs03f7

vjhs03f71#

是的,你可以使用PHP https://www.docusign.com/blog/dsdev-common-api-tasks-add-reminders-and-expiration-to-an-envelope来实现这一点,详细介绍了它,一个示例PHP代码是:

$envelopeDefinition = new \DocuSign\eSign\Model\EnvelopeDefinition();
$notification = new \DocuSign\eSign\Model\Notification();
$notification->setUseAccountDefaults('false'); # customize the notification for this envelope
$reminders = new \DocuSign\eSign\Model\Reminders();
$reminders->setReminderEnabled('true');
$reminders->setReminderDelay('3');  # first reminder to be sent three days after envelope was sent
$reminders->setReminderFrequency('2'); # keep sending reminders every two days
$expirations = new \DocuSign\eSign\Model\Expirations();
$expirations->setExpireEnabled('true');
$expirations->setExpireAfter('30');  # envelope will expire after 30 days
$expirations->setExpireWarn('2');  # expiration reminder would be sent two days before expiration
$notification->setExpirations($expirations);
$notification->setReminders($reminders);
$envelopeDefinition->setNotification($notification);

相关问题