Sha256: 98245ce50b211dd00c5cc76fc3da86af1318276a8da9dd7bd1f839266d5cf654

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 KB

Contents

= Postmark rails gem

Postmark plug-in for ActionMailer

== Install

The gem is hosted at gemcutter. If you don't have it, install it first:

    sudo gem install gemcutter
    gem tumble

Then
    sudo gem install postmark-rails

== Example

  config/environment.rb

    Rails::Initializer.run do |config|

      config.gem 'postmark-rails'
      require 'postmark-rails'
      config.action_mailer.postmark_api_key = "your-api-key"
      # ...
    end

The, make postmark the delivery method for the production environment:

  config/environments/production.rb

    config.action_mailer.delivery_method = :postmark

== Limitations

Currently postmark API does not support multiple recipients, or attachments. For more information, check the docs at http://developer.postmarkapp.com.

== Requirements

You will also need postmark account, server and sender signature set up to use it.

== Note on Patches/Pull Requests

* Fork the project.
* Make your feature addition or bug fix.
* Add tests for it. This is important so I don't break it in a future version unintentionally.
* Commit, do not mess with rakefile, version, or history.
* Send me a pull request. Bonus points for topic branches.

== Copyright

Copyright (c) 2009 Wildbit LLC. See LICENSE for details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
postmark-rails-0.1.3 README.rdoc