internal MessageReceivedEventArgs(SmtpMessage message) { if (message == null) { throw new ArgumentNullException("_message"); } this.message = message; }
private SmtpReply createMail(SmtpCommand command) { currentMessage = new SmtpMessage(); currentMessage.From = command.Parameters; return SmtpReply.Ok; }