0.0
No commit activity in last 3 years
No release in over 3 years
Some basic cheetah mail API end points implemented
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.9.1
~> 3.0.1
 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=<YOUR_API_USERNAME>
PASSWORD=<YOUR_API_PASSWORD>
VIEW_ID=<YOUR_VIEW_ID>

You can run the specs on save with

guard

or run them manually with

bundle exec rspec