imap_mail_copy

(PHP 4, PHP 5, PHP 7)

imap_mail_copyCopy specified messages to a mailbox

Описание

bool imap_mail_copy ( resource $imap_stream , string $msglist , string $mailbox [, int $options = 0 ] )

Copies mail messages specified by msglist to specified mailbox.

Список параметров

imap_stream

Поток IMAP, полученный из imap_open().

msglist

msglist is a range not just message numbers (as described in » RFC2060).

mailbox

The mailbox name, see imap_open() for more information

options

options is a bitmask of one or more of

  • CP_UID - the sequence numbers contain UIDS
  • CP_MOVE - Delete the messages from the current mailbox after copying

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Смотрите также

Коментарии

After much fooling around, imap_mail_copy did work for me. One thing you might want to check, if you are having problems, is the new mailbox name. Make sure it is just a folder name, e.g. INBOX.haha without the server part.
2001-01-04 18:37:35
http://php5.kiev.ua/manual/ru/function.imap-mail-copy.html
If you are having problems getting imap_mail_copy and imap_mail_move to work, check you have installed imap_devel (the imap development libraries) as well as imap (the imap daemon). Without it, PHP appears to configure correctly --with-imap, but some functions do not work.

It took me about 12 hours to figure this out!!
2002-07-08 13:51:40
http://php5.kiev.ua/manual/ru/function.imap-mail-copy.html
When we want to copy more than one mail, we can write '(string)' before msg_num. Like..

$msg_num = "1,2,3,4,5,6,7";
$copy = imap_mail_copy($imap_stream, (string) $msg_num, '[Gmail]/Important', CP_UID);
2015-09-29 14:11:18
http://php5.kiev.ua/manual/ru/function.imap-mail-copy.html

    Поддержать сайт на родительском проекте КГБ