README.rdoc in mandrill-0.0.3 vs README.rdoc in mandrill-0.0.4
- old
+ new
@@ -1,7 +1,9 @@
-= Mandrill {<img src="http://travis-ci.org/terra-firma/mandrill.png" />}[http://travis-ci.org/terra-firma/mandrill] {<img src="https://gemnasium.com/terra-firma/mandrill.png" alt="Dependency Status" />}[https://gemnasium.com/terra-firma/mandrill]
+= Mandrill
+Note: This gem is no longer under active development. We have moved on to using the {Mailchimp Gem}[https://github.com/mailchimp/mailchimp-gem] for interacting with Mailchimp's public API's. There is also a {lighter-weight Mandrill wrapper}[https://bitbucket.org/mailchimp/mandrill-api-ruby] maintained by Mailchimp.
+
Mandrill is a Ruby gem that provides a wrapper for interacting with the {Mandrill API}[http://mandrillapp.com/api/docs/index.html]. Remember that {Mandrill}[http://mandrillapp.com] has an excellent {SMTP Headers API}[http://help.mandrill.com/customer/portal/articles/456744-smtp-headers-api], which is often a better integration option, particularly if your app sends emails.
== Installation
(sudo) gem install mandrill
@@ -16,10 +18,10 @@
m.users :ping
m.users :senders
# Methods with dashes shouldn't be passed in as symbols
m.users 'disable-sender', {:domain => "exampledomain.com"}
m.users 'verify-sender', {:email => 'test@exampledomain.com'}
- m.messages :send {:message => {:html => "HTML message text", :text => "message text"}...}
+ m.messages :send, {:message => {:html => "HTML message text", :text => "message text"}...}
=== Errors
When an error is received an instance of <code>Mandrill::API::Error</code> will be returned so that you can rescue accordingly: