- Messages
- 2,867
- Reaction score
- 165
- Points
- 63
Hello. I'm trying to send mails through Gmail's SMTP server although it doesn't seem to be working. It worked for a few days after the server moves, though it hasn't since April 6th.
Since using an external SMTP server requires fsockopen(), I ran the following code to test if fsockopen is enabled and it doesn't appear to be enabled.
The output becomes Function Does Not Exist (http://www.techairlines.com/fsock.php).
I'm wondering if this is permanent or just temporary. Thanks.
Since using an external SMTP server requires fsockopen(), I ran the following code to test if fsockopen is enabled and it doesn't appear to be enabled.
PHP:
<?php
if(!function_exists("fsockopen")) {
echo "Function Exists";
}
else {
echo "Function Does Not Exist";
}
?>
The output becomes Function Does Not Exist (http://www.techairlines.com/fsock.php).
I'm wondering if this is permanent or just temporary. Thanks.