Re: PHPMailer different behavior..

2016-03-02 Thread Bill Shirley
Not enough information to even guess what is going on. In my apps when I accept an email address, I use a little bit of ajax to verify the domain: if ($email != '') { $tmp = explode('@', $email); if (isset($tmp[1])) { $got_mx = getmxrr($tmp[1], $mxhosts); if ($got_mx) {

PHPMailer different behavior..

2016-03-02 Thread lejeczek
on postfix? I'm not a php developer but I look after a postfix server and I wonder if you might know what might be the cause for a (simple) php app to sort of hang on email address bit when it is incorrect - and it is even not the app itself that validates the address - web page sort of refre