Edit
by Syed Asif - 10 years ago (2015-03-30)
Bulk email validation
| I need to do bulk email validation using MX record check and SMTP response to determine if the email exists actually. |
Ask clarification
2 Recommendations
This package can validate a list of email addresses.
It can take a list of email addresses from an array or load a list of email addresses from a given CSV file .
The class validate each email address and write a CSV file with the addresses that are valid.
| by zinsou A.A.E.Moïse package author 6835 - 7 years ago (2017-12-22) Comment
This is a solution for a list based on the package below from Manuel lemos. |
- 2 Comments
3.
by Arpita G - 6 years ago (2018-10-31) in reply to comment 2 by zinsou A.A.E.Moïse Reply
This code is not taking the data of a csv file. but it is taking the headings. so, I cant able to verify my email address.
If you let me know the process, it would be better for me.
Thank you in advance.
4.
by Arpita G - 6 years ago (2018-11-20) in reply to comment 2 by zinsou A.A.E.Moïse Reply
Yahoo email addresses are not checking here. For every yahoo mail address it is showing valid but its not
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.
| by Manuel Lemos package author 26695 - 9 years ago (2015-08-16) Comment
This class can perform the type of email validation that you request first checking the MX record and them simulating a email delivery using SMTP.
You can speedup the process if you have many email addresses to validate using whitelists or blacklists, for instance to accept all gmail.com addresses.
It can also detect invalid addresses that result from typos, so it avoids doing even the MX record lookup. |
- 1 Comment
1.
by Anand Poduri - 7 years ago (2017-11-07) Reply
How to verify if i have a list of email IDs in CSV file?