diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-23 01:12:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-23 01:12:26 +0300 |
commit | 75604ffe8c2ef1f2d76a44dc30e8a257b695daf5 (patch) | |
tree | 5cb43dcb41627d3313ba3d2a371b1a597fd3bab5 /src/net/eathena/mail2handler.h | |
parent | 17e9519c2ee0b126db5ba1df61dcddf9f7b90b47 (diff) | |
download | mv-75604ffe8c2ef1f2d76a44dc30e8a257b695daf5.tar.gz mv-75604ffe8c2ef1f2d76a44dc30e8a257b695daf5.tar.bz2 mv-75604ffe8c2ef1f2d76a44dc30e8a257b695daf5.tar.xz mv-75604ffe8c2ef1f2d76a44dc30e8a257b695daf5.zip |
Add ability to send new mail by /sendmail chat command.
Diffstat (limited to 'src/net/eathena/mail2handler.h')
-rw-r--r-- | src/net/eathena/mail2handler.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/eathena/mail2handler.h b/src/net/eathena/mail2handler.h index af28b7631..8e450da9d 100644 --- a/src/net/eathena/mail2handler.h +++ b/src/net/eathena/mail2handler.h @@ -48,6 +48,11 @@ class Mail2Handler final : public Net::Mail2Handler const std::string &body, const int64_t &money) const override final; + bool queueSendMail(const std::string &to, + const std::string &title, + const std::string &body, + const int64_t &money) const override final; + void nextPage(const MailOpenTypeT openType, const int64_t mailId) const override final; |