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
- Host: GitHub
- URL: https://github.com/simpleweb/cheetahmails
- Owner: simpleweb
- License: mit
- Created: 2015-02-23T21:11:03.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-11T09:11:01.000Z (about 11 years ago)
- Last Synced: 2024-04-25T00:27:34.040Z (about 2 years ago)
- Language: Ruby
- Homepage:
- Size: 215 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: license.txt
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