Guest User

Untitled

a guest
Oct 20th, 2017
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <table class="table table-striped table-hover" width="400" >
  2. <tbody >
  3. <tr class="warning">
  4. <td class="inbox-small-cells">
  5. <input type="checkbox" class="mail-checkbox">
  6. </td>
  7. <td ><i class="fa fa-star"></i></td>
  8. <td >#</td>
  9. <td >Sender</td>
  10. <td >Subject</td>
  11. <td ><i class="fa fa-paperclip"></i></td>
  12. <td >Date</td>
  13. <td >Message</td>
  14.  
  15. <?php
  16.  
  17. $hostname='{imap.gmail.com:993/imap/ssl}INBOX';
  18. $username = 'mymail@mail.com';
  19. $password = 'password';
  20. $inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Tiriyo: ' . imap_last_error());
  21. $emails = imap_search($inbox,'UNSEEN');
  22.  
  23. if($emails) {
  24. rsort($emails);
  25.  
  26. foreach($emails as $email_number) {
  27.  
  28. $overview = imap_fetch_overview($inbox,$email_number,0);
  29. $message = imap_fetchbody($inbox,$email_number, 1, FT_PEEK);
  30.  
  31. $email_number;
  32. $overview[0]->subject;
  33. $overview[0]->from;
  34. $overview[0]->date;
  35. $overview[0]->size ;
  36.  
  37. ?>
  38. <tr class="text-info" >
  39. <td class="inbox-small-cells" >
  40. <input type="checkbox" class="mail-checkbox">
  41. </td>
  42. <td ><i class="fa fa-star"></i></td>
  43. <td> <?php echo $email_number; ?></td>
  44. <td ><?php echo $overview[0]->from;?></a></td>
  45. <td><?php echo $overview[0]->subject; ?></td>
  46. <td class="view-message inbox-small-cells"><i class="fa fa-paperclip"></i></td>
  47. <td ><?php echo $overview[0]->date; ?> </td>
  48. </tr>
  49.  
  50. <?Php
  51. }
  52. }
  53.  
  54. ?>
Add Comment
Please, Sign In to add comment