I have this script here which works for gmail because a friend tested it out on his webhost and it worked for him. I am trying to run it but it doesn't fetch my emails because my webhost doesnt let me interact with external parties and so it blocks the connection with gmail.
My ultimate goal is to fetch the new emails that come in to my email. Now I am not very advanced with this stuff and I am rather new to this. I dont know what I need to do in order to connect to the email I have and fetch the emails from the inbox. Currently we have microsoft outlook which fetches emails from an exchange server. That is pretty much all I know. What changes do I need to make to my script or the exchange server settings in order for this email fetching to work?
<?php
// Report simple running errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);
// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
// Report all errors except E_NOTICE
// This is the default value set in php.ini
error_reporting(E_ALL ^ E_NOTICE);
// Report all PHP errors (see changelog)
error_reporting(E_ALL);
// Report all PHP errors
error_reporting(-1);
// Same as error_reporting(E_ALL);
ini_set('error_reporting', E_ALL);
/* connect to gmail */
$hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
$username = 'username@gmail.com';
$password = 'password';
/* try to connect */
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());
/* grab emails */
$emails = imap_search($inbox,'ALL');
/* if emails are returned, cycle through each... */
if($emails) {
/* begin output var */
$output = '';
/* put the newest emails on top */
rsort($emails);
/* for every email... */
foreach($emails as $email_number) {
/* get information specific to this email */
$overview = imap_fetch_overview($inbox,$email_number,0);
$message = imap_fetchbody($inbox,$email_number,2);
/* output the email header information */
$output.= '<div class="toggler '.($overview[0]->seen ? 'read' : 'unread').'">';
$output.= '<span class="subject">'.$overview[0]->subject.'</span> ';
$output.= '<span class="from">'.$overview[0]->from.'</span>';
$output.= '<span class="date">on '.$overview[0]->date.'</span>';
$output.= '</div>';
/* output the email body */
$output.= '<div class="body">'.$message.'</div>';
}
echo $output;
}
/* close the connection */
imap_close($inbox);
?>
because my webhost doesnt let me interact with external parties and so it blocks the connection with gmail- in that case, there is nothing that you can do to get your emails from theexternal partythat is Gmail, or your Exchange server, or any other email server that is not your host... – DaveRandom Nov 17 '11 at 16:17$hostname = '{address.of.exchange.server:143/imap}INBOX';,$username = 'myLogonName;,$username = 'myLogonPass;where username and password are the same as you use in Outlook. It is the$hostnamethat is the crucial part that you may need to play around with to get it to work (notably, you might have to use POP3). See the$mailboxparameter here for options and syntax. Username might needDOMAIN\usersyntax oruser@domainsyntax. – DaveRandom Nov 17 '11 at 16:56