A custom Laravel mail driver for NewsMAN via the SMTP API (message.send_raw endpoint).
Installation
composer require newsman/laravel-newsman-smtp
Run interactive setup
php artisan newsman:setup
# Prompts: Account ID, API Key, From address, From name
Usage
Mail::mailer('newsman')->html('<h1>Hello</h1><p>This is HTML!</p>', function ($m) {
$m->to('you@example.com')->subject('HTML test');
});