Skip to content

Instantly share code, notes, and snippets.

@jpablobr
Created March 25, 2011 01:04
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 jpablobr/886198 to your computer and use it in GitHub Desktop.
Save jpablobr/886198 to your computer and use it in GitHub Desktop.
Displays Sendgrid statistics for Heroku apps
class Heroku::Command::Sendgrid < Heroku::Command::Base
def test_email
app = extract_app
vars = heroku.config_vars(app)
to = ''
args.each do |arg|
key, value = arg.split("=")
to = value if key == "to"
end
if to.empty?
error "please specify an address to send to using to=<me@example.com>"
else
resource = RestClient::Resource.new("https://test-mail.heroku.com")
display resource["/mail"].post(:sendgrid_username => vars["SENDGRID_USERNAME"],
:sendgrid_password => vars["SENDGRID_PASSWORD"],
:sendgrid_domain => vars["SENDGRID_DOMAIN"],
:to => to)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment