View difference between Paste ID: itmwweBA and YTE7aqrw
SHOW: | | - or go back to the newest paste.
1
<?php
2
3
$host = '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX';
4
$user = '***';
5
$pass = '***';
6
$inbox = imap_open($host, $user, $pass) or die('Could not connect to Gmail: ' . imap_last_error());