PHP Classes

looking for email address verification script: can any one help me to find email verification php script

Recommend this page to a friend!
  All requests RSS feed  >  looking for email address verificatio...  >  Request new recommendation  >  A request is featured when there is no good recommended package on the site when it is posted. Featured requests  >  No recommendations No recommendations  

looking for email address verification script

Edit

Picture of Govind Saini by Govind Saini - 9 years ago (2015-07-04)

can any one help me to find email verification php script

This request is clear and relevant.
This request is not clear or is not relevant.

+5

I am looking for email address verification script.

  • 1 Clarification request
  • 1. Picture of Web 9 by Web 9 - 7 years ago (2018-03-08) Reply

    test

    Ask clarification

    2 Recommendations

    PHP Email validation: Determine if a given e-mail address is valid.

    Class that may be used to determine if a given e-mail address is valid. It features:

    - Simple validation just by looking at the e-mail address string
    - Validation of the domain against a list of known domains that are often misspelled (typos) like those of Gmail.com, Hotmail.com, Mail.ru, Ntlworld.com, Rediffmail.com, Rocketmail.com, Yahoo.com, Yandex.com, etc.
    - Provides did you mean like suggestions for email addresses that were entered with typos
    - Validation of domain against a list of typical fake domains like test.com, testtest.com, asd.com, asdf.com, etc..
    - Validation of the email address domain against a list of of known domains for being used as disposable email addresses or temporary domains
    - Manual whitelisting of domains to avoid trigger false positives of invalid domains
    - Validation of the e-mail address domain checking the DNS MX record (mail exchange)
    - Validation of a e-mail address by connecting to the mail host server to determine if there is really a deliverable mail box by simulating part of the message delivery process.
    This recommendation solves the problem.
    This recommendation does not solve the problem.

    +6

    Picture of Manuel Lemos by Manuel Lemos package author package author Reputation 26695 - 9 years ago (2015-07-05) Comment

    It impossible to perform any verification and guarantee that an email is valid.

    Classes like this can simulate the delivery of a message to the SMTP server of the domain of the email to verify and check if the server would reject the delivery.

    If the delivery is rejected, you can assume the email address is invalid.

    On the other hand if the delivery is not rejected right away, it does not mean the address is valid because the SMTP server may accept the message initially and reject it later.

    Anyway, this class is still useful and can even detect common typos of email address domains, like gmial.com instead of gmail.com, and tell you that the address is invalid even before trying the SMTP delivery check.


    Verify e-mail: Check if an e-mail is valid using SMTP

    This class can be used to check if an e-mail is valid using the SMTP protocol.

    It can connect to an SMTP server defined by the MX records of the domain of the address to validate.

    The class simulates the delivery of a message to see if the given recipient address is accepted as valid.
    This recommendation solves the problem.
    This recommendation does not solve the problem.

    +1

    Picture of Samuel Adeshina by Samuel Adeshina Reputation 1015 - 9 years ago (2015-07-05) Comment

    This class uses the SMTP protocol to check if an email address is valid by simulating the delivery a message


    Recommend package
    : 
    :