Sendcloud
Ruby api for sohu sendcloud api
Installation
Add this line to your application's Gemfile:
gem 'sendcloud'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sendcloud
Usage
Configure
Sendcloud.setup do |config|
config.api_user = 'your api user'
config.api_key = 'your api key'
endcall the api
Sendcloud::Mail.send(to: 'test@example.com', from: 'test@example.com', subject: 'test', html: 'test')Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request