https://github.com/AtaneNL/SignRequest
You can install this package via composer using:
composer require altelma/laravel-signrequest
The package will automatically register itself.
To publish the config file to config/signrequest.php
run:
php artisan vendor:publish --provider="Altelma\LaravelSignRequest\SignRequestServiceProvider"
$file = 'http://www.example.com/example.pdf'
$cdr = SignRequest::createDocumentFromURL($file);
$sender = '[email protected]';
$recipients = [
[
'email' => '[email protected]',
'from_email_name' => 'John Doe',
],
];
$message = 'Hey, please sign this document.'; // optional
$request = SignRequest::sendSignRequest($cdr->uuid, $sender, $recipients, $message);
The MIT License (MIT). Please see License File for more information.
Welcome for any help and suggestions.