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
Requires
- php: ^7.3|^8.0
- ext-curl: *
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.15
- phpunit/phpunit: ^9.2
- vimeo/psalm: ^3.0
This package is auto-updated.
Last update: 2025-09-23 15:22:32 UTC
README
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();