class Mail::Header

def split_header

strings.
Splits an unfolded and line break cleaned header into individual field
def split_header
  self.fields = @raw_source.split(Constants::HEADER_SPLIT)
end