Sinisterly
PayPal Valid Email Checker - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: PHP (https://sinister.ly/Forum-PHP)
+--- Thread: PayPal Valid Email Checker (/Thread-PayPal-Valid-Email-Checker)



PayPal Valid Email Checker - Mr-joker - 12-01-2017

Can anyone tell me how i can design PayPal valid email checker with PHP???
Any advises ?? Smile


RE: PayPal Valid Email Checker - hacxx - 12-05-2017

I only know one method to verify paypal accounts but the problem is that the user is notified.

Have a look in the link below
http://www.mediafire.com/file/2u3czoizqfjixzx/Manual_Paypal_Account_Checker.rar


RE: PayPal Valid Email Checker - chunky - 12-29-2017

What exactly do you mean by valid email? Do you want to check if the entered string is a valid email (like containing an @ followed by a valid domain) or do you want to check wheather the entered email is verified by paypal?
You can check if it's a valid email by using the filter_var function.
Code:
if (filter_var($email, FILTER_VALIDATE_EMAIL)) {
   // Valid email
}
In case you are looking for the second thing take a look at the GetVerifiedStatus function of the PayPal API.