Skip to content

tehPlayer/freshmail-rails

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Freshmail

This is a Rails Gem for Freshmail REST API.

Instalation

gem install freshmail

or add it to your Gemfile:

gem 'freshmail'

Usage

Create instance of gem:

freshmail = Freshmail::Client.new('YOUR_API_KEY', 'YOUR_API_SECRET')

After that, you can access Freshmail methods, for example:

my_lists = freshmail.lists
my_first_list_hash = my_lists['lists'].first['subscriberListHash']
my_last_list_hash = my_lists['lists'].last['subscriberListHash']

freshmail.add_subscriber(email: '[email protected]', list: my_first_list_hash, state: 1)

freshmail.batch_add_subscriber(subscribers: [{email: '[email protected]'}, {email: '[email protected]'}], list: my_last_list_hash, state: 1)

freshmail.subscriber(email: '[email protected]', list: my_first_list_hash)
freshmail.subscribers(subscribers: [{email: '[email protected]'}], list: my_last_list_hash)

freshmail.delete_subscriber(email: '[email protected]', list: my_first_list_hash)
freshmail.batch_delete_subscriber(subscribers: [{email: '[email protected]'}, {email: '[email protected]'}], list: my_last_list_hash)

Available methods:

freshmail.ping
freshmail.mail(...)
freshmail.subscriber(...)
freshmail.subscribers(...)
freshmail.add_subscriber(...)
freshmail.edit_subscriber(...)
freshmail.batch_add_subscriber(...)
freshmail.batch_edit_subscriber(...)
freshmail.delete_subscriber(...)
freshmail.batch_delete_subscriber(...)
freshmail.lists
freshmail.create_list(...)
freshmail.update_list(...)
freshmail.delete_list(...)

Contribution

If you want to contribute to the code, just create pull request, and I will merge it ASAP. Thank you for help.

TODO

Add more methods. Add tests.

Licence

Copyright (c) 2018 Marcin Adamczyk, released under the MIT license

Feel free to contact me if you need help: adamczyk.marcin [--a-t--] outlook.com