aksoftware/mr-sender-wrapper

send SMS and Fax with MrSender

Fund package maintenance!
aksoftwaregmbh
ak-software.com

Installs: 9 358

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/aksoftware/mr-sender-wrapper

dev-master 2024-09-23 13:22 UTC

This package is auto-updated.

Last update: 2025-09-23 15:22:32 UTC


README

Latest Version on Packagist GitHub Tests Action Status Total Downloads

You can easily send SMS and fax using this package and your account information https://www.mr-sender.com.

Installation

You can install the package via composer:

composer require aksoftware/mr-sender-wrapper

Usage

use AKSoftware\MrSenderWrapper\Sms;
use AKSoftware\MrSenderWrapper\Fax;

// create object class with originator option
$aksoftwaresms = new Sms('<YOUR_USERNAME>', '<YOUR_PASSWORD>');

// set message and recipient with tracking their individual tracking number.

$send = $aksoftwaresms->sendTextSms('<YOUR_SMS_MESSAGE>', 'RECIPIENT_NUMBER'
);
//show result message
echo $aksoftwaresms->getStatusMessage();

// create object class with originator option
$aksoftwarefax = new Fax('<YOUR_USERNAME>', '<YOUR_PASSWORD>');
// set message and recipient with tracking their individual tracking number.

$send = $aksoftwarefax->sendHtmlFax('<YOUR_HTML_MESSAGE>', 'RECIPIENT_NUMBER'
);
//show result message
echo $aksoftwarefax->getStatusMessage();

Credits