Multiple ways to Validate Email Addresses in Laravel 10

Websolutionstuff | Mar-04-2024 | Categories : Laravel PHP jQuery

Hey there! Have you ever wondered how websites ensure that the email addresses you provide are valid? In this article, I'll walk you through multiple ways to validate email addresses in Laravel 10.

We'll explore different techniques, from basic regex patterns to leveraging Laravel's built-in validation features.

So, let's see multiple ways to validate email addresses in laravel 10, how to validate email in laravel 8/9/10, how to validate email in PHP, email validation using jQuery, email validation regex, email validation using filter_var, and laravel email validation.

1. Regular Expression Validation

Regular expressions (regex) provide a flexible and powerful way to validate email addresses.

$email = '[email protected]';
if (preg_match('/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/', $email)) {
    echo 'Valid email address';
} else {
    echo 'Invalid email address';
}

 

2. PHP's filter_var Function

PHP provides a built-in function filter_var for basic email validation using the FILTER_VALIDATE_EMAIL flag:

$email = '[email protected]';
if (filter_var($email, FILTER_VALIDATE_EMAIL)) {
    echo 'Valid email address';
} else {
    echo 'Invalid email address';
}

 

3. Laravel Validation

In Laravel, you can utilize the validation features provided by the framework. Laravel offers a convenient way to validate user input through its Validator class:

$request->validate([
    'email' => 'required|email',
]);

This validation rule utilizes the egulias/email-validator package for validating the email address. 

'email' => 'email:rfc,dns'

 

4. DNS Lookup

Another approach is to perform a DNS lookup on the domain part of the email address to ensure it points to a valid domain. While this method can provide additional validation, it adds overhead and might not be suitable for every use case.

<?php

$email = '[email protected]';
list($user, $domain) = explode('@', $email);

// Perform DNS lookup for MX records
if (checkdnsrr($domain, 'MX')) {
    echo "Domain exists and has mail exchange (MX) records.";
} else {
    echo "Domain does not exist or does not have mail exchange (MX) records.";
}

Alternatively, you can use dns_get_record() the function to get more detailed information about the DNS records of a domain:

<?php

$email = '[email protected]';
list($user, $domain) = explode('@', $email);

// Get DNS records for the domain
$dns_records = dns_get_record($domain, DNS_ANY);

if (!empty($dns_records)) {
    echo "Domain exists and has DNS records.";
    print_r($dns_records);
} else {
    echo "Domain does not exist or does not have DNS records.";
}

 

5. Email Validation using jQuery

You can use jQuery to perform email validation on the client side before submitting a form to the server.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email Validation</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
    $('#email').on('input', function() {
        var email = $(this).val();
        if(validateEmail(email)) {
            $('#email-error').text('');
        } else {
            $('#email-error').text('Invalid email address');
        }
    });

    function validateEmail(email) {
        // Regular expression for basic email validation
        var re = /\S+@\S+\.\S+/;
        return re.test(email);
    }
});
</script>
</head>
<body>
    <form id="email-form">
        <label for="email">Email:</label>
        <input type="text" id="email" name="email">
        <span id="email-error" style="color: red;"></span>
        <button type="submit">Submit</button>
    </form>
</body>
</html>

 


You might also like:

Recommended Post
Featured Post
How to Create Components in Angular 16
How to Create Components in An...

In this article how to create components in angular 16. Here, we will learn about how to use angular component...

Read More

Jun-02-2023

How To Send Email using Node.js
How To Send Email using Node.j...

Hello Friends, In this tutorial we will learn how to send email using node.js app. In this tutorial we will see send...

Read More

Jul-28-2021

Laravel 9 Multiple Database Connections
Laravel 9 Multiple Database Co...

In this tutorial, we will see laravel 9 multiple database connections. we will implement how to use laravel 9 multi...

Read More

Mar-04-2022

How To Create Dynamic Pie Chart In Laravel 8
How To Create Dynamic Pie Char...

In this article, we will see how to create a dynamic pie chart in laravel 8. Pie charts are used to represent...

Read More

Oct-02-2020