Skip Navigation

Laravel email validation rule – must have organization domain

I needed a way to only allow users to register with only an email from specific domains. I created this real simple custom Laravel email validation rule using a preg_replace and then a check for the domain.
<?php

namespace App\Rules;

use Illuminate\Contracts\Validation\Rule;

class ArtCenterEmail implements Rule
{
    /**
     * Create a new rule instance.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    /**
     * Determine if the validation rule passes.
     *
     * @param  string  $attribute
     * @param  mixed  $value
     * @return bool
     */
    public function passes($attribute, $value)
    {
        $email_domain = preg_replace('/.+@/', '', $value);
        return $email_domain == 'artcenter.edu' || $email_domain == 'inside.artcenter.edu';
    }

    /**
     * Get the validation error message.
     *
     * @return string
     */
    public function message()
    {
        return 'You must use your ArtCenter email.';
    }
}

Related Snippets

See all