Merge pull request #75 from Aeolun/master

Give Message class constants to access the imap flags
This commit is contained in:
Robert Hafner 2014-07-28 09:41:13 -07:00
commit 766db0ad3a

10
src/Fetch/Message.php Normal file → Executable file
View File

@ -177,6 +177,16 @@ class Message
*/
public static $charsetFlag = '//TRANSLIT';
/**
* These constants can be used to easily access available flags
*/
const FLAG_RECENT = 'recent';
const FLAG_FLAGGED = 'flagged';
const FLAG_ANSWERED = 'answered';
const FLAG_DELETED = 'deleted';
const FLAG_SEEN = 'seen';
const FLAG_DRAFT = 'draft';
/**
* This constructor takes in the uid for the message and the Imap class representing the mailbox the
* message should be opened from. This constructor should generally not be called directly, but rather retrieved