Package

net.gutefrage

mandrill

Permalink

package mandrill

Visibility
  1. Public
  2. All

Type Members

  1. class Mandrill extends AnyRef

    Permalink

    This class is the entry point for creating Mandrill API Requests.

    Mandrill

    This class is the entry point for creating Mandrill API Requests. Its structure mimics the REST API for easy cross referencing.

    Usage

    Every Mandrill instance needs an API key.

    Examples:
    1. val sendTemplateBody = Mandrill(apiKey)
         .messages
         .sendTemplate("my-template-slug")
         .to("foo@bar.com")
    2. ,
    3. import net.gutefrage.mandrill._
      import net.gutefrage.mandrill.core._
      val apiKey = MandrillApiKey("your-api-key")
      val mandrill = Mandrill(apiKey)

      A concrete sendTemplate request can be created in a fluent style:

    See also

    https://mandrillapp.com/api/docs/

  2. class Messages extends AnyRef

    Permalink

    API for generating requests.

    Messages API

    API for generating requests.

  3. class Users extends AnyRef

    Permalink

    API for generating requests.

    Users API

    API for generating requests.

Value Members

  1. object Mandrill

    Permalink
  2. package core

    Permalink
  3. package messages

    Permalink
  4. package playjson

    Permalink
  5. package test

    Permalink
  6. package users

    Permalink

Ungrouped