Skip to content

Instantly share code, notes, and snippets.

@radar
Created March 7, 2016 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radar/4466683303b86d1bee8b to your computer and use it in GitHub Desktop.
Save radar/4466683303b86d1bee8b to your computer and use it in GitHub Desktop.
require 'csv'
emails = []
CSV.read('list.csv', headers: true).each do |row|
emails << row["Email Address"]
end
p emails
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment