An open API service indexing awesome lists of open source software.

https://github.com/simpleweb/cheetahmails

Cheetah Mail gem to perform some basic list management operations from within ruby
https://github.com/simpleweb/cheetahmails

Last synced: 20 days ago
JSON representation

Cheetah Mail gem to perform some basic list management operations from within ruby

Awesome Lists containing this project

README

          

Cheetah Mail is a mailing campaign manager by Experian.

This very simple gem was built to do two things:

1) Check if customers exist on a list (table)
2) Subscribe customers to a list (table)

The library implements their attempt at OAuth(!) and uses Redis to cache the access_token.

To use the gem you must configure it like:

Cheetahmails.configure do |config|
config.username = ENV['USERNAME']
config.password = ENV['PASSWORD']
end

To run the tests, create a .env file in the root of the project like:

USERNAME=
PASSWORD=
VIEW_ID=

You can run the specs on save with

guard

or run them manually with

bundle exec rspec