class Mail::Address

def name

a.name #=> 'Mikel Lindsaar'
a = Address.new('mikel@test.lindsaar.net (Mikel Lindsaar)')

as a comment field after the address. This returns that name if it exists.
Sometimes an address will not have a display name, but might have the name
def name
  parse unless @parsed
  get_name
end