ruchirkakkad / communicator
Communication system for picahoo systems
v1.0.6
2017-10-28 06:00 UTC
Requires
- php: >=5.5
- laravel/framework: 5.*
This package is not auto-updated.
Last update: 2025-03-30 05:17:06 UTC
README
Send email & sms
Requirements
- Php
- Curl
Installation
Require this package with composer
composer require ruchirkakkad/communicator
Add service provider to your app/config.php providers array
Picahoo\Communicator\CommunicatorServiceProvider::class,
Add Alias to your aliases array in your app/config.php
'Communicator' => Picahoo\Communicator\Facades\Communicator::class,
Publish config with
php artisan vendor:publish --provider="Picahoo\Communicator\CommunicatorServiceProvider"
How to use
load Communicator class in your file
use Communicator;
or
use Picahoo\Communicator\Facades\Communicator;
Send email
Communicator::sendEmail('Email address', 'Message..', 'Subject here..');
Send sms
Communicator::sendSms(['email' => 'Email address','phone' => 'phone number'], 'Message..');