Skip to content

Instantly share code, notes, and snippets.

@tobi
Created January 27, 2011 15:59
Show Gist options
  • Save tobi/798674 to your computer and use it in GitHub Desktop.
Save tobi/798674 to your computer and use it in GitHub Desktop.
smart_mta.rb
# SmartMta
class SmartMta
include HTTParty
base_uri 'http://smartmta.sendlabs.com/rest/json'
cattr_accessor :api_key
def self.add_sender(email)
result = post("/senders", :body => { 'apikey'=>api_key, 'emailaddress'=> email })
message = result['response']['message']
raise StandardError, message unless message == 'OK'
message
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment