README.rdoc 7.2 KB
Newer Older
D
Initial  
David Heinemeier Hansson 已提交
1 2
= Action Mailer -- Easy email delivery and testing

D
David Heinemeier Hansson 已提交
3
Action Mailer is a framework for designing email-service layers. These layers
4
are used to consolidate code for sending out forgotten passwords, welcome
D
Initial  
David Heinemeier Hansson 已提交
5 6 7
wishes on signup, invoices for billing, and any other use case that requires
a written notification to either a person or another system.

8
Action Mailer is in essence a wrapper around Action Controller and the
9 10 11
Mail gem.  It provides a way to make emails using templates in the same
way that Action Controller renders views using templates.

12 13 14 15 16 17
Additionally, an Action Mailer class can be used to process incoming email,
such as allowing a weblog to accept new posts from an email (which could even
have been sent from a phone).

== Sending emails

18 19 20 21 22 23 24 25
The framework works by initializing any instance variables you want to be
available in the email template, followed by a call to +mail+ to deliver
the email.

This can be as simple as:

  class Notifier < ActionMailer::Base
    delivers_from 'system@loudthinking.com'
26

27 28 29 30 31
    def welcome(recipient)
      @recipient = recipient
      mail(:to => recipient,
           :subject => "[Signed up] Welcome #{recipient}")
    end
D
Initial  
David Heinemeier Hansson 已提交
32 33 34
  end

The body of the email is created by using an Action View template (regular
A
Akira Matsuda 已提交
35
ERB) that has the instance variables that are declared in the mailer action.
36

D
Initial  
David Heinemeier Hansson 已提交
37 38
So the corresponding body template for the method above could look like this:

39
  Hello there,
D
Initial  
David Heinemeier Hansson 已提交
40 41

  Mr. <%= @recipient %>
42 43

  Thank you for signing up!
44 45

And if the recipient was given as "david@loudthinking.com", the email
D
Initial  
David Heinemeier Hansson 已提交
46 47
generated would look like this:

48
  Date: Mon, 25 Jan 2010 22:48:09 +1100
D
Initial  
David Heinemeier Hansson 已提交
49 50
  From: system@loudthinking.com
  To: david@loudthinking.com
51
  Message-ID: <4b5d84f9dd6a5_7380800b81ac29578@void.loudthinking.com.mail>
D
Initial  
David Heinemeier Hansson 已提交
52
  Subject: [Signed up] Welcome david@loudthinking.com
53 54 55 56
  Mime-Version: 1.0
  Content-Type: text/plain;
  	charset="US-ASCII";
  Content-Transfer-Encoding: 7bit
D
Initial  
David Heinemeier Hansson 已提交
57

58
  Hello there,
D
Initial  
David Heinemeier Hansson 已提交
59 60 61

  Mr. david@loudthinking.com

V
Vijay Dev 已提交
62
In previous version of Rails you would call <tt>create_method_name</tt> and
63 64 65 66 67
<tt>deliver_method_name</tt>.  Rails 3.0 has a much simpler interface, you
simply call the method and optionally call +deliver+ on the return value.

Calling the method returns a Mail Message object:

P
Paco Guzman 已提交
68 69
  message = Notifier.welcome  # => Returns a Mail::Message object
  message.deliver             # => delivers the email
D
Initial  
David Heinemeier Hansson 已提交
70

71 72 73
Or you can just chain the methods together like:

  Notifier.welcome.deliver    # Creates the email and sends it immediately
D
Initial  
David Heinemeier Hansson 已提交
74

75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
== Setting defaults

Sometimes you have an Action Mailer class with more than one method for sending e-mails. Think of an authentication system in which you would like to send users a welcome message after sign up, a forgot your password message and a message to send when the user closes his account. Your class would look something like this.

Example:

  class Authenticationmailer < ActionMailer::Base
    def signed_up(user)
       # prepare the view
       ....
      
      # and send the e-mail 
      mail(:to         => user.email, 
             :subject => "Welcome to our awesome application!",
             :from     => "awesome@application.com")
    end

    def forgot_password(user)
      # prepare the view
      ....

      mail(:to         => user.email,
             :subject => "Forgot your password? No worry, we're awesome at that too!",
             :from     => "awesome@application.com")
    end

    def closed_account(user)
      # prepare the view
      ....

      mail(:to         => user.email,
             :subject => "Closing your account, are you? That's not awesome, dude!",
             :from     => "awesome@application.com")
    end
  end

Now this works fine, but it would be nice if we could remove the <tt>:from</tt> from the method, seeing that it is a static value that is the same across all the methods, and just assign it once. Introducing the <tt>default</tt> method. With this method you can assign default values that will be used by all of the mail methods. Now you can refactor the above example to just assign the <tt>:from</tt> value only once.

Example:

  class Authenticationmailer < ActionMailer::Base
    default :from => "awesome@application.com"

    def signed_up(user)
       # prepare the view
       ....
      
      # and send the e-mail 
      mail(:to         => user.email, 
             :subject => "Welcome to our awesome application!")
    end

    def forgot_password(user)
      # prepare the view
      ....

      mail(:to         => user.email,
             :subject => "Forgot your password? No worry, we're awesome at that too!")
    end

    def closed_account(user)
      # prepare the view
      ....

      mail(:to         => user.email,
             :subject => "Closing your account, are you? That's not awesome, dude!")
    end
  end

The default method takes a Hash, so it is possible to assign more values in one method.

Example:

  class Authenticationmailer < ActionMailer::Base
    default :from => "awesome@application.com", :subject => "Default subject"

    .....
  end

The default value is overwritten if you use them in the mail method.

156 157
== Receiving emails

A
s/a/an/  
Akira Matsuda 已提交
158
To receive emails, you need to implement a public instance method called <tt>receive</tt> that takes an
J
JudeArasu 已提交
159
email object as its single parameter. The Action Mailer framework has a corresponding class method,
N
Neeraj Singh 已提交
160
which is also called <tt>receive</tt>, that accepts a raw, unprocessed email as a string, which it then turns
J
JudeArasu 已提交
161
into the email object and calls the receive instance method.
162 163 164 165 166 167 168

Example:

  class Mailman < ActionMailer::Base
    def receive(email)
      page = Page.find_by_address(email.to.first)
      page.emails.create(
169
        :subject => email.subject, :body => email.body
170 171 172 173
      )

      if email.has_attachments?
        for attachment in email.attachments
174
          page.attachments.create({
175
            :file => attachment, :description => email.subject
176 177 178 179 180 181
          })
        end
      end
    end
  end

182
This Mailman can be the target for Postfix or other MTAs. In Rails, you would use the runner in the
183
trivial case like this:
184

185
  rails runner 'Mailman.receive(STDIN.read)'
186

187
However, invoking Rails in the runner for each mail to be received is very resource intensive.  A single
J
JudeArasu 已提交
188
instance of Rails should be run within a daemon, if it is going to be utilized to process more than just
189 190
a limited number of email.

191 192 193 194
== Configuration

The Base class has the full list of configuration options. Here's an example:

195 196 197 198 199 200 201
  ActionMailer::Base.smtp_settings = {
    :address        => 'smtp.yourserver.com', # default: localhost
    :port           => '25',                  # default: 25
    :user_name      => 'user',
    :password       => 'pass',
    :authentication => :plain                 # :plain, :login or :cram_md5
  }
D
Initial  
David Heinemeier Hansson 已提交
202

203 204

== Download and installation
D
Initial  
David Heinemeier Hansson 已提交
205

J
José Valim 已提交
206
The latest version of Action Mailer can be installed with Rubygems:
D
Initial  
David Heinemeier Hansson 已提交
207

208 209 210
  % [sudo] gem install actionmailer

Source code can be downloaded as part of the Rails project on GitHub
D
Initial  
David Heinemeier Hansson 已提交
211

A
Akira Matsuda 已提交
212
* https://github.com/rails/rails/tree/master/actionmailer/
D
Initial  
David Heinemeier Hansson 已提交
213 214 215 216 217 218


== License

Action Mailer is released under the MIT license.

219

D
Initial  
David Heinemeier Hansson 已提交
220 221
== Support

222 223 224 225 226
API documentation is at

* http://api.rubyonrails.com

Bug reports and feature requests can be filed with the rest for the Ruby on Rails project here:
D
Initial  
David Heinemeier Hansson 已提交
227

228
* https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets
J
JudeArasu 已提交
229