Sending mails and notifications through Laravel 5.8 is not complicated. The most popular library to do this with is SwiftMailer (
https://swiftmailer.symfony.com/
). You can install it in your root application directory.
Local Development
To check your e-mail verification property
locally, let’s install a fresh version of Laravel in your
home/code directory. You need a fresh Laravel installation to start with the concept that the user is not verified initially.
//code 10.1
$ composer create-project --prefer-dist laravel/laravel laranew
Let’s check the version.
//code 10.2
ss@ss-H81M-S1:~/code/laranew$ ...