Userfox Ruby Gem

A Ruby Wrapper for the Userfox API

Installation

    gem install userfox

Getting Started

It’s as easy as pie, create a client like so :

    userfox = Userfox.new("client_id", "client_secret")

Track a user :

    userfox.track("hello@example.com", "http://example.com", name: "Antoine")

Send him an email :

    userfox.send("hello@example.com", "Password Recovery", hello: "world")

Change Its email :

    userfox.change("hello@example.com", "hi@example.com")

Unsubscribes him :

    userfox.unsubscribes("hello@example.com")

See Userfox API Documentation for further informations about what you can do with all of that.

Contributing to userfox

Copyright © 2013 Antoine Lagadec. See LICENSE.txt for further details.