Simple PHP code to validate emails server side
I wrote this code 2 years ago
It's a simple way to protect your contact form from spam emails
- Validate Email Format ([email protected])
- Ping Email Domain to make sure it's online
- Validate Email Provider from the list
- Gmail.com
- Hotmail.com
- Outlook.com
- msn.com
- Outlook.sa
- aol.com
- protonmail.com
if(isValid("[email protected]")){
echo "This is a valid email";
} else {
echo "Please enter a valid email";
}
FarisCode