BakoBako / laravel-mail-tester by bakome

Send test emails from artisan command
1,043
0
1
Package Data
Maintainer Username: bakome
Maintainer Contact: aleksandar.markovski_bako@yahoo.com (Aleksandar Bako Markovski)
Package Create Date: 2016-06-28
Package Last Update: 2016-07-02
Language: PHP
License: MIT
Last Refreshed: 2024-03-25 03:01:28
Package Statistics
Total Downloads: 1,043
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 1

Laravel Email Tester

Laravel Email Tester is a tool that let you test laravel mail setup via artisan commands.

Installation

composer require bako/laravel-mail-tester

Register service provider "Bako\Laravel\MailTester\MailTesterProvider"

Basic Usage

php artisan mail:test email_address

Options:

* "--subject" Set up email subject ( Default is "Test" ).
    php artisan mail:test email_address --subject=Subject

* "--body" Set up email body ( Default is "Test" and will be discarded if view is setup ).
    php artisan mail:test email_address --body=Body

* "--queue" Whether the send of email should be via queue.
    php artisan mail:test email_address --queue

* "--view" Test email from view
    php artisan mail:test email_address --view=viewName