A Step-by-Step Guide Email Verification After User Registration in Laravel

Email verification is a crucial step in ensuring the validity of user accounts and preventing spam registrations in web applications. Laravel provides built-in support for email verification, making it easy to implement this feature into your application. In this guide, we’ll walk through the process of implementing email verification after user registration in a Laravel application.

Step #01: Create Or Open Laravel App:

Configure Mail Driver

Configure your application’s mail driver in the .env file.

MAIL_MAILER=smtp
MAIL_HOST=smtp.example.com
MAIL_PORT=587
MAIL_USERNAME=your-email@example.com
MAIL_PASSWORD=your-email-password
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=your-email@example.com
MAIL_FROM_NAME="${APP_NAME}"

Step #02: Enable Email Verification

In Laravel, email verification is handled by the MustVerifyEmail interface and the verified middleware. To enable email verification for new user registrations, make sure your User model implements the MustVerifyEmail interface.

<?php

namespace Illuminate\Contracts\Auth;

interface MustVerifyEmail
{
    /**
     * Determine if the user has verified their email address.
     *
     * @return bool
     */
    public function hasVerifiedEmail();

    /**
     * Mark the given user's email as verified.
     *
     * @return bool
     */
    public function markEmailAsVerified();

    /**
     * Send the email verification notification.
     *
     * @return void
     */
    public function sendEmailVerificationNotification();

    /**
     * Get the email address that should be used for verification.
     *
     * @return string
     */
    public function getEmailForVerification();
}

Step #03: Update User Registration Process

public function registerUser(Request $request)
    {

        $url = $request->desiredSegment;
        Log::info("what is coming in the request file" . print_r($url, true));
        $validate = \Validator::make($request->all(), [
            'name' => ['required', 'regex:/^[^\s.]+(?:\s[^\s.]+)*$/'], // Allow spaces but not dots
            'email' => 'required|email|unique:users|max:255',
            'g-recaptcha-response' => 'required|captcha',
        ]);

        if ($validate->fails()) {
            return redirect()->back()->withErrors($validate);
        }
        $gettingemail = $request->email;

        Log::info('register time email aaa agay | ');
        $validate_email = Usersorganization::where('u_org_user_email', $gettingemail)->first();
        Log::info('validate_email what value is came| ');

        if (empty($validate_email)) {
            // ############# when user register by self password will be auto save and token also in token table open
            $autogen = rand();
            $validToken = sha1(time()) . rand();
            $verifycoursetoken = new Verifytoken();
            $verifycoursetoken->token = $validToken;
            $verifycoursetoken->email = $request['email'];
            $verifycoursetoken->save();
            Log::info("token save ho rha hai");
            // by self register account with Any oraganization open
            $without_orgnization_user = array(
                'name' => $request['name'],
                'slug' => $request['slug'],
                'email' => $request['email'],
                'url' => $url,
                'token' => $validToken,
            );

            Mail::to($without_orgnization_user['email'])->send(new WithOutOrganizatioUser($without_orgnization_user, $validToken));
            // by self register account with without oraganization close
            Log::info("email chala gaya");
            // ############# when user register by self password will be auto save and token also in token table close
            $lower = strtolower($request->name);
            log::info("roshan" . $lower);
            $slug = str_replace(" ", "-", $lower);
            $slug = str_replace(" ", "-", $slug);
            log::info("roshankumar" . $slug);
            $slug_get = User::where('name', $request->name)->get();
            log::info("roshankuhnxksahmarjha" . $slug_get);
            if (sizeof($slug_get) > 0) {
                $slug_count = count($slug_get) + 1;
                $slug = $slug . '-' . $slug_count;
                log::info("roshankumarjha" . $slug);

            } else {
                $slug = $slug;
            }
            $user_create = User::create([
                // 'password'   => bcrypt($request->password),
                'password' => Hash::make($autogen),
                'email' => $request->email,
                'name' => $request->name,
                'slug' => $slug,
            ]);

            // return view('auth/verify');
            return redirect('/auth/verify')->with('success', 'Successfully registered');
        } else {
            Log::info('already assign organization so please check your  mail');
            return view('/custom_auth.accessdenied')->with('danger', 'Access Denied Please Check Your Mail');
        }
    }

Step #04: Create a Template

<?php

namespace App\Mail;
use Illuminate\Foundation\Auth\RegisterController;

use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Contracts\Queue\ShouldQueue;

class WithOutOrganizatioUser extends Mailable
{
    use Queueable, SerializesModels;
    public $without_orgnization_user;
    public $validToken;

    /**
     * Create a new message instance.
     *
     * @return void
     */
    public function __construct($without_orgnization_user,$validToken)
    {
        $this->without_orgnization_user = $without_orgnization_user;
        $this->validToken = $validToken;
    }

    /**
     * Build the message.
     *
     * @return $this
     */
    public function build()  
    {
        return $this
        ->from('contact@wizbrand.com', 'Wizbrand')
        ->subject('Welcome to WizBrand.com | Verification Email for sign-up!')
        ->view('emails.activation')
        ->with('data',$this->without_orgnization_user,$this->validToken);
    }
}

Output:-

Hopefully, It will help you …!!!

Related Posts

Certified AIOps Manager: Strategic Framework for Intelligent IT Operations

Introduction The Certified AIOps Manager program is a specialized training designed to help professionals lead the next wave of IT operations. This guide is for engineers and…

Read More

Advanced AIOps Architect Certification Roadmap for DevOps Engineers

Introduction The Certified AIOps Architect is a comprehensive professional program designed for engineers and architects who want to master the intersection of Artificial Intelligence and IT Operations….

Read More

Advanced Certified AIOps Professional Guide for Mastering AI Driven Operations Skills

Introduction Artificial Intelligence for IT Operations is the future of managing complex systems and large scale digital environments. The Certified AIOps Professional program is designed for those…

Read More

Certified AIOps Engineer Training to Boost Automation Monitoring and Career Growth

The Certified AIOps Engineer is a specialized professional program designed to integrate artificial intelligence into modern IT operations. As systems scale and generate massive amounts of telemetry…

Read More

Advanced Guide to AIOps Foundation Certification for Scalable IT Infrastructure

In an era where infrastructure and applications generate massive amounts of telemetry data, manual intervention is no longer a sustainable strategy for maintaining system uptime. The AIOps…

Read More

Advanced Certified Site Reliability Manager Learning Path for DevOps Teams

Introduction The Certified Site Reliability Manager program is an essential credential for those aiming to lead high-performance engineering teams in the modern era of cloud computing. As organizations transition…

Read More
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x