I\'m trying to use PHPMailer to send e-mails with SMTP and gmail. The exact script am using works on other servers but it is not working on this particular hosting company\'s se
You can check for open/available ports with fsockopen
:
$fp = fsockopen('127.0.0.1', 25, $errno, $errstr, 5);
if (!$fp) {
// port is closed or blocked
} else {
// port is open and available
fclose($fp);
}
...where 5
is the timeout in seconds until the call fails.
This is probably due to a firewall issue where your hosting provider is blocking you from connecting to outbound sockets and/or specific ports. Keep in mind that it is a very usual security configuration to block outbound SMTP ports. Back in the day, only port 25
was blocked, but I'm starting to see more and more SSL variants being blocked as well.
Most providers and hosting companies will only allow you to connect to their own SMTP server to prevent spammers from relaying junk mail.