19 lines
325 B
C++
19 lines
325 B
C++
#ifndef ____SMTP_MAIL_h__
|
|
# define ____SMTP_MAIL_h__
|
|
|
|
# include "SMTPCommand.h"
|
|
|
|
namespace mail {
|
|
|
|
// class SMTPServer;
|
|
|
|
class __SMTP_MAIL : public SMTPCommand {
|
|
|
|
public:
|
|
int processCommand(coreutils::ZString &request, SMTPSession &session, SMTPServer &server) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|