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

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
Additionally, an Action Mailer class can be used to process incoming email,
13
such as allowing a blog to accept new posts from an email (which could even
14 15 16 17
have been sent from a phone).

== Sending emails

18 19 20 21 22 23 24
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
A
Alexey Vakhov 已提交
25
    default from: 'system@loudthinking.com'
26

27 28
    def welcome(recipient)
      @recipient = recipient
A
Alexey Vakhov 已提交
29 30
      mail(to: recipient,
           subject: "[Signed up] Welcome #{recipient}")
31
    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
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

A
Alexey Vakhov 已提交
62 63
  Thank you for signing up!

64
In order to send mails, you simply call the method and then call +deliver_now+ on the return value.
65 66 67

Calling the method returns a Mail Message object:

68 69
  message = Notifier.welcome("david@loudthinking.com")   # => Returns a Mail::Message object
  message.deliver_now                                    # => delivers the email
D
Initial  
David Heinemeier Hansson 已提交
70

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

73
  Notifier.welcome("david@loudthinking.com").deliver_now # Creates the email and sends it immediately
D
Initial  
David Heinemeier Hansson 已提交
74

75 76
== Setting defaults

77 78 79 80 81 82
It is possible to set default values that will be used in every method in your Action Mailer class.
To implement this functionality, you just call the public class method <tt>default</tt> which you get for free from
<tt>ActionMailer::Base</tt>. This method accepts a Hash as the parameter. You can use any of the headers, email messages
have, like <tt>:from</tt> as the key. You can also pass in a string as the key, like "Content-Type", but Action Mailer
does this out of the box for you, so you won't need to worry about that.
Finally, it is also possible to pass in a Proc that will get evaluated when it is needed.
83

W
Waynn Lue 已提交
84
Note that every value you set with this method will get overwritten if you use the same key in your mailer method.
85 86 87

Example:

A
Alexey Vakhov 已提交
88
  class AuthenticationMailer < ActionMailer::Base
89
    default from: "awesome@application.com", subject: Proc.new { "E-mail was generated at #{Time.now}" }
90 91 92
    .....
  end

93 94
== Receiving emails

A
s/a/an/  
Akira Matsuda 已提交
95
To receive emails, you need to implement a public instance method called <tt>receive</tt> that takes an
J
JudeArasu 已提交
96
email object as its single parameter. The Action Mailer framework has a corresponding class method,
N
Neeraj Singh 已提交
97
which is also called <tt>receive</tt>, that accepts a raw, unprocessed email as a string, which it then turns
J
JudeArasu 已提交
98
into the email object and calls the receive instance method.
99 100 101 102 103

Example:

  class Mailman < ActionMailer::Base
    def receive(email)
104
      page = Page.find_by(address: email.to.first)
105
      page.emails.create(
106
        subject: email.subject, body: email.body
107 108 109
      )

      if email.has_attachments?
Z
Zachary Scott 已提交
110
        email.attachments.each do |attachment|
111
          page.attachments.create({
112
            file: attachment, description: email.subject
113 114 115 116 117 118
          })
        end
      end
    end
  end

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

122
  rails runner 'Mailman.receive(STDIN.read)'
123

124
However, invoking Rails in the runner for each mail to be received is very resource intensive.  A single
125
instance of Rails should be run within a daemon, if it is going to process more than just a limited amount of email.
126

127 128 129 130
== Configuration

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

131
  ActionMailer::Base.smtp_settings = {
132 133 134 135 136
    address:        'smtp.yourserver.com', # default: localhost
    port:           '25',                  # default: 25
    user_name:      'user',
    password:       'pass',
    authentication: :plain                 # :plain, :login or :cram_md5
137
  }
D
Initial  
David Heinemeier Hansson 已提交
138

139 140

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

S
Sukeerthi Adiga 已提交
142
The latest version of Action Mailer can be installed with RubyGems:
D
Initial  
David Heinemeier Hansson 已提交
143

144 145 146
  % [sudo] gem install actionmailer

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

148
* https://github.com/rails/rails/tree/master/actionmailer
D
Initial  
David Heinemeier Hansson 已提交
149 150 151 152


== License

153 154 155
Action Mailer is released under the MIT license:

* http://www.opensource.org/licenses/MIT
D
Initial  
David Heinemeier Hansson 已提交
156

157

D
Initial  
David Heinemeier Hansson 已提交
158 159
== Support

160 161
API documentation is at

162
* http://api.rubyonrails.org
163

164
Bug reports can be filed for the Ruby on Rails project here:
D
Initial  
David Heinemeier Hansson 已提交
165

A
Arun Agrawal 已提交
166
* https://github.com/rails/rails/issues
J
JudeArasu 已提交
167

168 169 170 171
Feature requests should be discussed on the rails-core mailing list here:

* https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core