我正在尝试阅读存储在SMTP服务器中的电子邮件。 Windows 2008 STD Server与Websitepanel和SMTP MailEnabled WebClient一起安装。
之前我使用以下PHP代码阅读有Cpanel的CentO上的电子邮件。
ini_set("max_execution_time",360);
/* connect to server */
$hostname = '{mydomain.com:143/notls}INBOX';
$username = 'user@domain.com';
$password = 'password';
/* try to connect */
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to domain:' . imap_last_error());
/* grab emails */
$emails = imap_search($inbox,'ALL');