
I have this code: $domain = 'massag.com'; $hosts = array(); $mxweights = array(); getmxrr($domain, $hosts, $mxweights); var_dump($hosts); var_dump($mxweights); $host = gethostbynamel($hosts[0])[0]; var_dump($host); $f = @fsockopen($host, 25, $errno, $errstr, 10); if(!$f) { var_dump('NOT CONNECTED'); } It is not connected to smtp server but when I use command smtp:217.196.209.9 on mxtoolbox.com it is connected. Am...