mirror of
https://github.com/retailcrm/Fetch.git
synced 2025-04-05 14:23:35 +03:00
Merge pull request #3 from Wiakowe/message-move
Added method Message::moveToMailbox()
This commit is contained in:
commit
baaae55c0c
1 changed files with 11 additions and 0 deletions
|
@ -636,4 +636,15 @@ class Message
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This function is used to move a mail to the given mailbox.
|
||||
*
|
||||
* @param $mailbox
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function moveToMailBox($mailbox)
|
||||
{
|
||||
return imap_mail_copy($this->imapStream, $this->uid, $mailbox, CP_UID | CP_MOVE);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue