https://github.com/simpleweb/silverpops
Gem for basic silverpop integration
https://github.com/simpleweb/silverpops
Last synced: 12 months ago
JSON representation
Gem for basic silverpop integration
- Host: GitHub
- URL: https://github.com/simpleweb/silverpops
- Owner: simpleweb
- License: mit
- Created: 2015-05-21T16:28:36.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-22T09:52:58.000Z (about 11 years ago)
- Last Synced: 2025-03-02T03:41:34.919Z (over 1 year ago)
- Language: Ruby
- Size: 125 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
Silverpop is a mailing campaign manager provided by IBM.
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)
To use the gem you must configure it like:
Silverpops.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=
You can run the specs on save with
guard
or run them manually with
bundle exec rspec