Ok so just been introduced to the PHP Imap functions and am looking forward to using it, but am not sure what the address should be.
The server i'm using is running cpanel, and when you wish to set up an email account for it, it should point to mail.yourdomain.com.
Could someone explain the exact address I need to call upon instead of mail.localhost:110/imap as that returns this:
The server i'm using is running cpanel, and when you wish to set up an email account for it, it should point to mail.yourdomain.com.
PHP:
//Ping POP3
if(imap_open ("{mail.localhost:110/imap}Inbox", "username", "password"))
{
echo 'Connection success!';
}
else
{
echo 'Connection failed';
Could someone explain the exact address I need to call upon instead of mail.localhost:110/imap as that returns this:
Warning: imap_open(): Couldn't open stream {mail.localhost:110/imap}Inbox in /home/etc..etc..