class Net::SMTP::Response

def self.parse(str)

readable reply text
Parses the received response and separates the reply code and the human
def self.parse(str)
  new(str[0,3], str)
end