summaryrefslogtreecommitdiff
path: root/src/managment/mail.cpp
blob: e43a68c2c4b66e86709489183720a09345d12915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "mail.hpp"

namespace smtp::manage
{
    Mail::Mail( file::Mail const& file_reader)
    {
        mMails = file_reader.Read();
    }

    std::list<std::string> Mail::GetMailToSend() const
    {
        return mMails;
    }

    bool Mail::AddMailToSend()
    {

    }

    bool Mail::DeleteMailToSend( std::string const& mail_to_send)
    {

    }

}