PHP - Funzione imap_body ()
Le funzioni PHP − IMAP ti aiutano ad accedere agli account di posta elettronica, IMAP sta per Internet Mail Access Protocol usando queste funzioni puoi anche lavorare con i protocolli NNTP, POP3 e metodi di accesso alla casella di posta locale.
Il imap_body() la funzione accetta un valore di risorsa che rappresenta un flusso IMAP, un valore intero che rappresenta un messaggio particolare come parametri e, legge il corpo della posta / messaggio specificato sotto forma di stringa.
Sintassi
imap_body($imap_stream ,$msg [,options]);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 |
imap_stream (Mandatory) Si tratta di un valore stringa che rappresenta un flusso IMAP, valore di ritorno di imap_open() funzione. |
2 |
msg(Mandatory) Questo è un valore intero che rappresenta il messaggio / numero di posta. |
3 |
Options(Mandatory) Questo è un parametro opzionale che può essere uno o più dei seguenti:
|
Valori restituiti
Questa funzione restituisce un valore stringa che rappresenta il corpo del messaggio specificato nella cassetta postale specificata.
Versione PHP
Questa funzione è stata introdotta per la prima volta nella versione 4 di PHP e funziona in tutte le versioni successive.
Esempio
Questo è un esempio che dimostra l'utilizzo di imap_fetchtext() funzione -
<html>
<body>
<?php
//Establishing connection
$url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
$id = "[email protected]";
$pwd = "cohondob_123";
$imap = imap_open($url, $id, $pwd);
print("Connection established...."."<br>");
//Fetching the contents of a message
print("Contents of the first message: "."<br>");
$body = imap_body($imap, 1);
print($body);
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Produzione
Questo genererà il seguente output:
Connection established....
Contents of the first message:
--000000000000a0d34e05b24373f4 Content-Type: text/plain; charset="UTF-8" #sample_mail1 --000000000000a0d34e05b24373f4 Content-Type: text/html; charset="UTF-8"
#sample_mail1
--000000000000a0d34e05b24373f4--
Esempio
Questo è un altro esempio di questa funzione:
<html>
<body>
<?php
//Establishing connection
$url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
$id = "[email protected]";
$pwd = "cohondob_123";
$imap = imap_open($url, $id, $pwd);
print("Connection established...."."<br>");
//Searching emails
$emailData = imap_search($imap, '');
if (! empty($emailData)) {
foreach ($emailData as $msg) {
$msg = imap_body($imap, $msg);
print(quoted_printable_decode($msg)."<br>");
}
}
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Produzione
Questo genererà il seguente output:
Connection established....
−−000000000000a0d34e05b24373f4 Content-Type: text/plain; charset="UTF-8" #sample_mail1 −−000000000000a0d34e05b24373f4 Content-Type: text/html; charset="UTF−8"
#sample_mail1
−−000000000000a0d34e05b24373f4−−
−−000000000000bb1b8205b24375b9 Content-Type: text/plain; charset="UTF−8" #sample_mail2 −−000000000000bb1b8205b24375b9 Content-Type: text/html; charset="UTF−8"
#sample_mail2
−−000000000000bb1b8205b24375b9−−
−−000000000000dceebf05b27c7601 Content-Type: text/plain; charset="UTF−8" #sample_mail3 −−000000000000dceebf05b27c7601 Content-Type: text/html; charset="UTF-8"
#sample_mail3
−−000000000000dceebf05b27c7601−−
−−000000000000e7e7c705b27d7527 Content-Type: text/plain; charset="UTF-8" #sample_mail4 −−000000000000e7e7c705b27d7527 Content−Type: text/html; charset="UTF−8"