I have been reading from the documentation about the new feature of laravel the email verification. Where can I locate the email template that is sent to the user.
Actually they not use any blade or template they create notification and write code for it in notification.
I can locate the email template location you want to modify mail template.
Sent by the toMail() method.
\vendor\laravel\framework\src\Illuminate\Notifications\resources\views\email.blade.php
\vendor\laravel\framework\src\Illuminate\Mail\resources\views\php artisan vendor:publish --tag=laravel-notifications
php artisan vendor:publish --tag=laravel-mailAfter running this command, the mail notification templates will be located in the resources/views/vendor directory.
Colors and style are controlled by the CSS file in resources/views/vendor/mail/html/themes/default.css
No comments:
Post a Comment