Build Laravel 5.7 Email Authentication with Mailgun and Digital Ocean

Connor Leech
Employbl
Published in
6 min readDec 13, 2018

--

Build session authentication with email verification into a default Laravel 5.7 app

Mailgun integrates with default Laravel applications

The newly released Laravel version 5.7 adds a new capability to verify user’s emails. If you’ve ever ran php artisan make:auth within a Laravel app you’ll know the feeling of pleasure and excitement when you see all of your register and login pages, complete with password hashing and a users table already built out. This excitement will soon subside after deploying to production only to find that anyone can register with garbage@notrealemail.com or whatever they feel like typing in. This thin session authentication layer doesn’t help much in a live application. The introduction of Laravel 5.7’s MustVerifyEmail interface adds to the authentication scaffold so that in order for users to login they must use a real, valid email address.

Source code on GitHub

Create a new Laravel application

The first step is to create a new application with some setup:

$ laravel new email-verification-example
$ php artisan make:auth
Authentication scaffolding generated successfully.
$ touch database/database.sqlite

--

--

Connor Leech
Employbl

Girl Dad x 2. Cofounder @Employbl. Software Engineer @CommentSold.