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

Strategic DevOps Career Growth and High Salary Skills

Introduction The digital landscape is shifting rapidly. As companies across the globe transition to cloud-native infrastructures, the demand for professionals who can bridge the gap between development…

Read More

Top DevOps Certifications: Dominate Kubernetes, Cloud, And Automation

Introduction The cloud infrastructure world is moving faster than ever, and the demand for production-ready engineering talent is breaking records. Teams everywhere are desperately trying to bridge…

Read More

Streamlining Distributed Pipelines with DataOps Multi-Cloud Data Management

Introduction Modern business operations generate massive amounts of information every single second. To store, process, and analyze this information, organizations no longer rely on a single data…

Read More

Ultimate DataOps Automation Tools Guide: Build and Orchestrate Scalable Pipelines

Introduction Modern enterprises run on data, yet managing the underlying infrastructure remains a massive operational challenge. Historically, data workflows were handled manually. Data engineers wrote custom scripts,…

Read More

Accelerate Your Pipeline: Implementing Real-Time DataOps

Introduction Real-time DataOps is a critical evolution in how modern organizations manage the constant flow of information. By integrating automation, continuous testing, and real-time processing, businesses can…

Read More

Calculate Your Canada PR Points: The Complete Guide to Boosting Your CRS Score

Introduction Canada uses an objective, merit-based points system to select the most qualified candidates from around the world. To assess your chances, you need to use a…

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