class Swot

def institution_name

Returns a string with the institution name; nil if nothing is found.

Figure out the institution name based on the email address/domain.
def institution_name
  @institution_name ||= File.read(file_path, :mode => "rb", :external_encoding => "UTF-8").strip
rescue
  nil
end