Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 394 Bytes

mails.md

File metadata and controls

24 lines (16 loc) · 394 Bytes

Mails

[[toc]]

Create a new mailable

php artisan make:mail FullMatrixMail --markdown=emails.customers.full-matrix

Send a mail

Mail::to('stef@marshmallow.dev')
    ->send(new LeadAdmin($data));

Publish laravel mail templates

php artisan vendor:publish --tag=laravel-mail