Hello Yuri,
i don't know if you have think for add SMS as "reminder" .. if not.. maybe if not big job
as you have create a interface for sms provider, have you any template (sorry my knowledge is very old ).. i can try with https://docs.spryngsms.com/
or just say me what file i must to copy and adapt
Thanks in advance
i don't know if you have think for add SMS as "reminder" .. if not.. maybe if not big job
as you have create a interface for sms provider, have you any template (sorry my knowledge is very old ).. i can try with https://docs.spryngsms.com/
or just say me what file i must to copy and adapt
Thanks in advance
PHP Code:
$spryng = new \Spryng\Client('YOUR_ACCESS_KEY');
$message = new \Spryng\Objects\Message();
$message->originator = 'Spryng';
$message->recipients = ['31612345678'];
$message->body = 'This is a test message.';
$spryng->messages->create($message);