13 lines
276 B
C++
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;
|
|
}
|
|
|
|
}
|