Skip to content

MalcolmKnott/email-tester

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Send test email using Laravel Artisan command

This composer package lets you easily send test email with a Laravel Artisan command.

Installation

Begin by pulling in the package through Composer.

composer require malcolmknott/emailtester

Next, if using Laravel 5, include the service provider within your config/app.php file.

'providers' => [
    Malcolmknott\Emailtester\EmailtesterServiceProvider::class,
];

Configuration

You will need to update the mail settings in your .env file before you can send email.

Optional, publish the config file to update max sends per command, the default max is 10 per command. The last parameter of the artisan command is how many email to send.

php artisan vendor:publish --provider="Malcolmknott\Emailtester\EmailtesterServiceProvider" --tag="config"

Usage

Artisan command

php artisan send-email [email protected] 1

Scheduled Job

$schedule->command('send-email [email protected] 1')->twiceDaily(9, 21);

Email Template

Publish the view file to add your own message.

php artisan vendor:publish --provider="Malcolmknott\Emailtester\EmailtesterServiceProvider" --tag="views"

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published