BARANTMail/SMTPSession.cpp
2022-07-26 16:05:55 -07:00

13 lines
276 B
C++

# include "SMTPSession.h"
namespace mail {
SMTPSession::SMTPSession(core::EPoll &ePoll, core::TCPServer &server)
: TCPSession(ePoll, server, "SMTP Client Session") {}
void SMTPSession::onConnected() {
out << "220 localhost BMAMail" << CRLF;
}
}