diff options
Diffstat (limited to 'src/messageBuilder.hpp')
-rw-r--r-- | src/messageBuilder.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/messageBuilder.hpp b/src/messageBuilder.hpp index f928d1d5..e03e78c8 100644 --- a/src/messageBuilder.hpp +++ b/src/messageBuilder.hpp @@ -67,6 +67,12 @@ public: */ const addressList& getRecipients() const; + /** Return the recipients of the message (To:). + * + * return recipients of the message + */ + addressList& getRecipients(); + /** Set the recipients of the message (To:). * * @param recipients list of recipients @@ -79,6 +85,12 @@ public: */ const addressList& getCopyRecipients() const; + /** Return the copy recipients of the message (Cc:). + * + * @return copy recipients of the message + */ + addressList& getCopyRecipients(); + /** Set the copy recipients of the message (Cc:). * * @param cc list of copy recipients @@ -91,6 +103,12 @@ public: */ const addressList& getBlindCopyRecipients() const; + /** Return the blind-copy recipients of the message (Bcc:). + * + * @return blind-copy recipients of the message + */ + addressList& getBlindCopyRecipients(); + /** Set the blind-copy recipients of the message (Bcc:). * * @param bcc list of blind-copy recipients |