Guest User

Untitled

a guest
Feb 27th, 2018
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. error_reporting(E_ALL);
  3. ini_set('display_errors', 1);
  4. $imapPath = '{imap.1and1.co.uk:993/imap/ssl/novalidate-cert}INBOX';
  5.  
  6. $username = 'user@companymail.com';
  7. $password = 'password';
  8.  
  9. // try to connect
  10. $inbox = imap_open($imapPath,$username,$password) or die('Cannot connect to outllook: ' . imap_last_error());
  11. ?>
Add Comment
Please, Sign In to add comment