Welcome Guest, Not a member yet? Register   Sign In
Use my class
#1

Hi,
I have a class file, APPPATH.'ThirdParty/EmailValidation/EmailValidation.php' this file is found:
https://github.com/nsgeorgi/verify-email...yEmail.php
In simple PHP examle this file using:
PHP Code:
include_once 'class.verifyEmail.php';

        $email '[email protected]';

        $vmail = new verifyEmail();

        if ($vmail->check($email)) {
            echo 'email <' $email '> exist!';
        } elseif ($vmail->isValid($email)) {
            echo 'email <' $email '> valid, but not exist!';
        } else {
            echo 'email <' $email '> not valid and not exist!';
        


How to use this EmailValidation class, in my controllers?
Reply


Messages In This Thread
Use my class - by csanesz - 07-10-2023, 06:51 AM
RE: Use my class - by kenjis - 07-10-2023, 03:50 PM
RE: Use my class - by brabus - 07-13-2023, 05:20 AM



Theme © iAndrew 2016 - Forum software by © MyBB