Questions? Feedback? powered by Olark live chat software

Laravel NewsMAN SMTP Driver

Admin, October 15

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');
});
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...