laravel maintained by supersendtx
Description
Laravel integration for the SuperSend TX transactional email API
Author
SuperSend TX
Last update
2026/08/04 08:02
(dev-main)
License
Downloads
4
Tags
SuperSend TX Laravel package
Laravel integration for the SuperSend TX transactional email API.
composer require supersendtx/laravel
Publish config:
php artisan vendor:publish --tag=supersendtx-config
Set SUPERSENDTX_API_KEY in .env, then send:
use SuperSendTX\Laravel\Facades\SuperSendTX;
$result = SuperSendTX::client()->emails->send([
'from' => 'you@yourdomain.com',
'to' => 'user@example.com',
'subject' => 'Hello',
'html' => '<p>It works.</p>',
]);