Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. foreach($emails as $email_number) {
  2.  
  3. /* get information specific to this email */
  4. $overview = imap_fetch_overview($inbox,$email_number,0);
  5. $message = imap_fetchbody($inbox,$email_number,2);
  6.  
  7. /* output the email header information */
  8.  
  9. /* output the email body */
  10. $output.= '<div class="body">'.$message.'</div>';
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement