Skip to content
/ mailrelay-gem Public template
forked from mailrelay/mailrelay-gem

Mailrelay gem for Ruby and Ruby on Rails

Notifications You must be signed in to change notification settings

els2520/mailrelay-gem

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Mailrelay

Mailrelay gem is a simple Ruby wrapper for Mailrelay.com API. You can do a large number of operations like managing subscribers and campaigns, sending your newsletters, getting your stats data, etc.

Installation

Simply run:

gem install mailrelay

Examples

You can check the API documentation to view a list of all available functions. All functions can be called with this wrapper.

If you want to create a subscriber, simply use:

require 'rubygems'
require 'mailrelay'

# Set your account hostname and api key here
hostname = 'your_account_hostname'
api_key = 'your_api_key'

api = Mailrelay::API.new hostname, api_key

api.addSubscriber :email => '[email protected]', :name => 'Name'

About

Mailrelay gem for Ruby and Ruby on Rails

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%