PHP - imap_append() 函数



PHP−IMAP 函数帮助您访问电子邮件帐户,IMAP 代表 **I**nternet **M**ail **A**ccess **P**rotocol,使用这些函数,您还可以使用 NNTP、POP3 协议和本地邮箱访问方法。

**imap_append()** 函数接受一个表示 IMAP 流的资源值,以及另外两个表示邮箱名称/URL 和消息的字符串值作为参数,并将给定消息追加到指定的邮箱。

**imap_binary()** 函数 notranslate"> imap_append($imap_stream ,$mailbox ,$message [$options, $internal_date]);

参数

序号 参数及描述
1

imap_stream (必填)

这是一个表示 IMAP 流的字符串值,是 **imap_open()** 函数的返回值。

2

mailbox(必填)

这是一个表示邮箱名称/URL 的字符串值。它包含服务器名称、邮箱路径。

3

message(必填)

这是一个表示要追加的消息的字符串值。

4

options (可选)

这是一个可选的字符串值,它将被追加到邮件指定的邮箱。

5

date (可选)

这是一个表示可选内部日期的字符串值,该日期将添加到消息中。

返回值

此函数返回一个布尔值,成功时为 TRUE,失败时为 FALSE。

PHP 版本

此函数首次引入于 PHP 版本 4,并在所有后续版本中均有效。

示例

以下示例演示了 **imap_append()** 函数的使用 −

<html>
   <body>
      <?php
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "[email protected]";
         $pwd = "cohondob_123";
         $stream = imap_open($url, $id, $pwd);
         print("Connection established....");
         print("<br>");
		 
         $num = imap_num_msg($stream);
         print("Number of messages: ".$num."\n");

         imap_append($stream, $url
            , "From: [email protected]\r\n"
            . "To: [email protected]\r\n"
            . "Subject: test\r\n"
            . "\r\n"
            . "this is a test message, please ignore\r\n"
         );
         print("<br>");
         print("Number of messages after append: ".imap_num_msg($stream)."\n");

         imap_close($stream);
      ?>
   </body>
</html>

输出

这将生成以下输出 −

Connection established....
Number of messages: 10
Number of messages after append: 11

示例

以下是上述函数使用可选参数的示例 −

<html>
   <body>
      <?php
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "[email protected]";
         $pwd = "cohondob_123";
         $stream = imap_open($url, $id, $pwd);
         print("Connection established....");
         print("<br>");
		 
         $num = imap_num_msg($stream);
         print("Number of messages: ".$num."\n");

         $msg = "From: [email protected]\r\n"
            . "To: [email protected]\r\n"
            . "Subject: test\r\n"
            . "\r\n"
            . "this is a test message, please ignore\r\n";

         imap_append($stream, $url, $msg, "", date("2/2/2020"));
         print("Message appended");
         imap_close($stream);
      ?>
   </body>
</html>

输出

这将生成以下输出 −

Message appended
php_function_reference.htm
广告