mipotech / yii2-pulseem
A collection of wrapper functions for using the Pulseem API via Yii2
Installs: 51
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.4.0
- ext-soap: *
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2025-03-29 00:18:07 UTC
README
This package provides a simple way to use Pulseem for email and SMS sending.
Installation
The preferred way to install this extension is through composer.
First add this entry to the repositories
section of your composer.json:
"repositories": [{
...
},{
"type": "git",
"url": "https://github.com/mipotech/yii2-pulseem.git"
},{
...
}],
then add this line:
"mipotech/yii2-pulseem": "dev-master",
to the require
section of your composer.json
file and perform a composer update.
Configuration
Add the following section to the params file (@app/config/params.php):
return [ ... 'pulseem' => [ // Basic config 'password' => '...', 'username' => '...', //'endpoint' => '...', // Optionally configure a custom endpoint instead of the default // For email operations (optional) 'fromEmail' => '...', 'fromName' => '...' // For SMS operations (optional) 'senderPhone' => '...', ], ... ];
That's it. The package is set up and ready to go.
Usage
To create an instance of the SDK:
use mipotech\pulseem\PulseemSdk; $pulseem = new PulseemSdk();
Sending a single email
Standard:
$params = [ 'htmlBody' => '<p>Body here</p>', 'subject' => 'Testing', 'toEmail' => 'test@test.com', ]; $res = $pulseem->sendSingleEmail($params);
Using a Yii2 view:
$params = [ 'subject' => 'Testing', 'toEmail' => 'test@test.com', ]; $bodyTemplate = '@app/views/emails/customTeplate'; $bodyParams = [ 'model' => $model, 'index' => $i, ] $res = $pulseem->sendSingleEmail($params, $bodyTemplate, $bodyParams);
Sending a group email with unique content for each message
This type of group email mandates that an array of htmlBodies
be passed as part of $params
.
$params = [ 'htmlBodies' => [ '<p>Body here 1</p>', '<p>Body here 2</p>', ], 'subjects' => [ 'Testing 1', 'Testing 2', ], 'toEmails' => [ 'test1@test.com', 'test2@test.com', ], 'toNames' => [ 'Test User 1', 'Test User 2', ], ]; $res = $pulseem->sendGroupEmail($params);
Sending a group email with identical content for each messgae
This type of group emails support the same two options of either explicitly specifying the htmlBody or using a Yii2 view.
$params = [ 'htmlBody' => '<p>Body here</p>', 'subject' => 'Testing', 'toEmails' => [ 'test1@test.com', 'test2@test.com', ], 'toNames' => ['Test 1', 'Test 2'], ]; $res = $pulseem->sendGroupSameEmail($params);
Sending a single SMS
$res = $pulseem->sendSingleSms('+972541112222', 'Testing', [ 'delayDeliveryMinutes' => 1, // optional 'externalRef' => '111222', // optional ]);