class Mail::Address

def strip_all_comments(string)

def strip_all_comments(string)
  unless Utilities.blank?(comments)
    comments.each do |comment|
      string = string.gsub("(#{comment})", Constants::EMPTY)
    end
  end
  string.strip
end