Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to use IMAP in PHP to fetch mail body content?
    primarykey
    data
    text
    <p>I can't fetch email body content.</p> <p>This is my code</p> <pre><code>&lt;?php /* connect to server */ $hostname = '{myserver/pop3/novalidate-cert}INBOX'; $username = 'username'; $password = 'password'; /* try to connect */ $inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Tiriyo: ' . imap_last_error()); //echo $inbox; /* 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) { //$email_number=$emails[0]; //print_r($emails); /* 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.= '&lt;div class="toggler '.($overview[0]-&gt;seen ? 'read' : 'unread').'"&gt;'; $output.= '&lt;span class="subject"&gt;'.$overview[0]-&gt;subject.'&lt;/span&gt; '; $output.= '&lt;span class="from"&gt;'.$overview[0]-&gt;from.'&lt;/span&gt;'; $output.= '&lt;span class="date"&gt;on '.$overview[0]-&gt;date.'&lt;/span&gt;'; $output.= '&lt;/div&gt;'; /* output the email body */ $output.= '&lt;div class="body"&gt;'.$message.'&lt;/div&gt;'; } echo $output; } /* close the connection */ imap_close($inbox); ?&gt; </code></pre> <p>When I use to fetch email from Gmail, the email body content is displayed, but once I use my mail server, I can't fetch the body content of email.</p> <p>Can you help me fix this problem?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload