PHP - Função imap_fetchheader ()
Funções PHP-IMAP ajudam você a acessar contas de e-mail, IMAP significa IInternet Maflição Acesso Protocol usando essas funções, você também pode trabalhar com NNTP, protocolos POP3 e métodos de acesso à caixa de correio local.
o imap_fetchheader() A função aceita um valor de recurso que representa um fluxo IMAP, um valor inteiro que representa uma mensagem na caixa de correio como parâmetros e recupera o cabeçalho da mensagem especificada.
Sintaxe
imap_fetchheader($imap_stream, $msg [, $options]);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | imap_stream (Mandatory) Este é um valor de string que representa um fluxo IMAP, valor de retorno do imap_open() função. |
2 | msg (Mandatory) Este é um valor inteiro que representa o número da mensagem / e-mail, que deve ser marcado para exclusão. |
3 | options(Optional) Este é um parâmetro opcional que pode ser um ou mais dos seguintes -
|
Valores Retornados
Esta função retorna um valor de string que representa o cabeçalho do e-mail / mensagem especificado.
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 4 e funciona em todas as versões posteriores.
Exemplo
A seguir está um exemplo da função imap_fetchheader () -
<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_fetchheader($imap, 3);
print_r($body);
print_r($body);
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Resultado
Isso irá gerar a seguinte saída -
Connection established ....
Contents of the first message:
Delivered-To: [email protected] Received: by 2002: a05: 6214: 1625:
0: 0: 0: 0 with SMTP id e5csp4406831qvw; Mon, 26 Oct 2020 00:01:56 −0700
(PDT) X-Received: by 2002: a05: 6830: 1308 :: with SMTP id
p8mr1957837otq.330.1603695716288; Mon, 26 Oct 2020 00:01:56 −0700 (PDT) ARC
−Seal: i = 1; a = rsa−sha256; t = 1603695716; cv = none; d =
google.com; s = arc-20160816; b =
Xm8jmMAo9BHvDPfEAHphx6Siu3z1V6Kp9EBFAlZ8pq5efBjIEA / zBXvKTzf4XVct + v + . . . .
. . . . . . . . . . .
Exemplo
Este é outro exemplo desta função -
<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>");
$emailData = imap_search($imap, '');
foreach ($emailData as $msg) {
$header = imap_fetchheader($imap, $msg);
print($header);
print("<br>");
}
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Resultado
Isso irá gerar a seguinte saída -
Connection established....
Contents of the first message:
Delivered-To: [email protected] Received: by
2002:a05:6214:1625:0:0:0:0 with SMTP id e5csp1568707qvw; Thu, 22 Oct 2020
07:40:56 -0700 (PDT) X-Received: by 2002:aca:750b:: with SMTP id
q11mr1798627oic.163.1603377656521; Thu, 22 Oct 2020 07:40:56 -0700 (PDT)
ARC-Seal: i=1; a=rsa-sha256; t=1603377656; cv=none; d=google.com; s=arc-20160816;
b=zSBoZxFjMeKTU6s4IfuwImWLA+EHPl+rbEcemnErz+th7yY5+qDdO3bqR7R14ZOQwf
Exemplo
A seguir está um exemplo da função acima com parâmetros opcionais -
<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_fetchheader($imap, imap_uid($imap, 7), FT_UID);
print_r($body);
print_r($body);
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Isso irá gerar a seguinte saída -
Connection established ....
Contents of the first message:
Delivered-To: [email protected] Received: by 2002: a05: 6214: 1625:
0: 0: 0: 0 with SMTP id e5csp4406831qvw; Mon, 26 Oct 2020 00:01:56 −0700
(PDT) X−Received: by 2002: a05: 6830: 1308 :: with SMTP id
p8mr1957837otq.330.1603695716288; Mon, 26 Oct 2020 00:01:56 −0700 (PDT)
ARC-Seal: i = 1; a = rsa-sha256; t = 1603695716; cv = none; d = google.com; s =
arc-20160816; b = Xm8jmMAo9BHvDPfEAHphx6Siu3z1V6Kp9EBFAlZ8pq5efBjIEA /
zBXvKTzf4XVct + v + . . . . . . . . . . . . . . .