Created
March 21, 2018 13:30
-
-
Save tflight/82350d6e14ee1ac89951231544105d14 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$mbox = imap_open("{mail.example.com:993/imap/ssl}", "username", "password"); | |
if (!$mbox) { | |
echo 'fail'; | |
} | |
echo 'success'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment