sub100/notifications

Sub100 Notifications Laravel SDK

dev-master 2021-02-03 14:02 UTC

This package is auto-updated.

Last update: 2024-04-29 04:27:43 UTC


README

This package uses Sub100 notification api to send email, sms and whatsapp notifications.

Usage as a composer package in your Laravel project

Install via composer

composer req sub100/notifications

Publish config

php artisan vendor:publish --provider="sub100\Notifications\Sub100NotificationServiceProvider"

Configure .env file

NOTIFICATION_URL=https://path-to-notification/api/
<?php

$message = new Message();
$message->subject('Subject');
$message->mailTemplate('notification.template.dir.filename');
$message->mailVariables(['name' => 'User']);
$message->addEmail('test@example.com.br');

Notification::notify($message);

Usage in another projects

Install via composer

composer req sub100/notifications
<?php

$authToken = '';

$message = new Message();
$message->message('Message text');
$message->addWhatsapp('+55 (44) 91234-5678');

$notification = new Notification('http://notification-api.example.com');

$notification->notify($message, $authToken);

Other Examples

Send Twilio Whatsapp message

<?php

$authToken = '';

$message = new Message();
$message->message('Message text');
$message->addWhatsapp('+55 (44) 91234-5678');
$message->senderServiceType('twilio');
$message->senderServiceCredentials([
    "twilio_auth_token"   => "8b74ff6655248c86fe0813e07d0f58a8",
    "twilio_account_sid"  => "AC16909ae3f38b03c7495d7dfbfd9dcbb4",
    "twilio_from"         => "whatsapp:+14155238886"
]);

$notification = new Notification('http://notification-api.example.com');

$notification->notify($message, $authToken);

Send Email with pre-defined mail body

<?php

$authToken = '';

$message = new Message();
$message->mailBody('<p>Message text</p>');
$message->addEmail('test@example.com.br');

$notification = new Notification('http://notification-api.example.com');

$notification->notify($message, $authToken);

Get notifications history

$authToken = '';

$originId = '';

$clientIds = ['',];

$notificationIds = ['',];

$notification = new Notification('http://notification-api.example.com');

$notification->historyByOrigin($originId, $authToken)

$notification->historyByClientAndOrigin($clientIds, $originId, $authToken);

$notification->historyByNotificationAndOrigin($notificationIds, $originId, $authToken)