2009-10-17 09:31:11 -04:00
require 'active_support/core_ext/class'
2010-01-23 06:20:20 -05:00
require 'active_support/core_ext/module/delegation'
2009-12-28 05:21:36 -05:00
require 'mail'
2009-12-30 04:43:56 -05:00
require 'action_mailer/tmail_compat'
2010-01-23 06:46:33 -05:00
require 'action_mailer/collector'
2009-06-15 14:44:45 -04:00
2006-03-27 22:22:58 -05:00
module ActionMailer #:nodoc:
2008-05-25 07:29:00 -04:00
# Action Mailer allows you to send email from your application using a mailer model and views.
2004-11-23 20:04:44 -05:00
#
2006-05-10 01:38:43 -04:00
# = Mailer Models
2006-09-02 15:32:45 -04:00
#
2008-05-25 07:29:00 -04:00
# To use Action Mailer, you need to create a mailer model.
2008-05-14 15:09:49 -04:00
#
2006-05-10 01:38:43 -04:00
# $ script/generate mailer Notifier
#
2008-05-14 15:09:49 -04:00
# The generated model inherits from ActionMailer::Base. Emails are defined by creating methods within the model which are then
# used to set variables to be used in the mail template, to change options on the mail, or
2006-05-10 01:38:43 -04:00
# to add attachments.
#
# Examples:
#
# class Notifier < ActionMailer::Base
# def signup_notification(recipient)
# recipients recipient.email_address_with_name
2008-12-19 09:27:43 -05:00
# bcc ["bcc@example.com", "Order Watcher <watcher@example.com>"]
2006-05-10 01:38:43 -04:00
# from "system@example.com"
# subject "New account information"
2010-01-18 19:15:57 -05:00
# body :account => recipient
2006-05-10 01:38:43 -04:00
# end
# end
#
# Mailer methods have the following configuration methods available.
#
# * <tt>recipients</tt> - Takes one or more email addresses. These addresses are where your email will be delivered to. Sets the <tt>To:</tt> header.
# * <tt>subject</tt> - The subject of your email. Sets the <tt>Subject:</tt> header.
# * <tt>from</tt> - Who the email you are sending is from. Sets the <tt>From:</tt> header.
# * <tt>cc</tt> - Takes one or more email addresses. These addresses will receive a carbon copy of your email. Sets the <tt>Cc:</tt> header.
2008-05-23 13:40:36 -04:00
# * <tt>bcc</tt> - Takes one or more email addresses. These addresses will receive a blind carbon copy of your email. Sets the <tt>Bcc:</tt> header.
# * <tt>reply_to</tt> - Takes one or more email addresses. These addresses will be listed as the default recipients when replying to your email. Sets the <tt>Reply-To:</tt> header.
2010-01-16 16:56:20 -05:00
# * <tt>sent_on</tt> - The date on which the message was sent. If not set, the header will be set by the delivery agent.
2006-05-10 01:38:43 -04:00
# * <tt>content_type</tt> - Specify the content type of the message. Defaults to <tt>text/plain</tt>.
# * <tt>headers</tt> - Specify additional headers to be set for the message, e.g. <tt>headers 'X-Mail-Count' => 107370</tt>.
#
2008-03-27 13:54:02 -04:00
# When a <tt>headers 'return-path'</tt> is specified, that value will be used as the 'envelope from'
# address. Setting this is useful when you want delivery notifications sent to a different address than
# the one in <tt>from</tt>.
#
2006-09-02 15:32:45 -04:00
#
# = Mailer views
#
2008-05-25 07:29:00 -04:00
# Like Action Controller, each mailer class has a corresponding view directory
2006-05-10 01:38:43 -04:00
# in which each method of the class looks for a template with its name.
2007-02-20 19:29:44 -05:00
# To define a template to be used with a mailing, create an <tt>.erb</tt> file with the same name as the method
2008-05-14 15:09:49 -04:00
# in your mailer model. For example, in the mailer defined above, the template at
2007-02-20 19:29:44 -05:00
# <tt>app/views/notifier/signup_notification.erb</tt> would be used to generate the email.
2006-05-10 01:38:43 -04:00
#
# Variables defined in the model are accessible as instance variables in the view.
#
# Emails by default are sent in plain text, so a sample view for our model example might look like this:
#
# Hi <%= @account.name %>,
# Thanks for joining our service! Please check back often.
#
2006-09-02 15:32:45 -04:00
# You can even use Action Pack helpers in these views. For example:
#
# You got a new note!
2009-12-25 15:35:40 -05:00
# <%= truncate(@note.body, 25) %>
#
# If you need to access the subject, from or the recipients in the view, you can do that through mailer object:
#
# You got a new note from <%= mailer.from %>!
# <%= truncate(@note.body, 25) %>
2008-05-14 15:09:49 -04:00
#
2006-09-02 15:32:45 -04:00
#
2008-04-21 15:31:54 -04:00
# = Generating URLs
2008-05-14 15:09:49 -04:00
#
2008-04-21 15:31:54 -04:00
# URLs can be generated in mailer views using <tt>url_for</tt> or named routes.
2008-05-14 15:09:49 -04:00
# Unlike controllers from Action Pack, the mailer instance doesn't have any context about the incoming request,
# so you'll need to provide all of the details needed to generate a URL.
2006-09-02 15:32:45 -04:00
#
2008-04-21 15:31:54 -04:00
# When using <tt>url_for</tt> you'll need to provide the <tt>:host</tt>, <tt>:controller</tt>, and <tt>:action</tt>:
2008-05-14 15:09:49 -04:00
#
2008-04-21 15:31:54 -04:00
# <%= url_for(:host => "example.com", :controller => "welcome", :action => "greeting") %>
2006-09-02 15:32:45 -04:00
#
2008-04-21 15:31:54 -04:00
# When using named routes you only need to supply the <tt>:host</tt>:
2008-05-14 15:09:49 -04:00
#
2008-04-21 15:31:54 -04:00
# <%= users_url(:host => "example.com") %>
#
# You will want to avoid using the <tt>name_of_route_path</tt> form of named routes because it doesn't make sense to
# generate relative URLs in email messages.
#
2008-05-14 15:09:49 -04:00
# It is also possible to set a default host that will be used in all mailers by setting the <tt>:host</tt> option in
2008-04-21 15:31:54 -04:00
# the <tt>ActionMailer::Base.default_url_options</tt> hash as follows:
#
# ActionMailer::Base.default_url_options[:host] = "example.com"
2008-05-14 15:09:49 -04:00
#
2008-05-09 05:38:02 -04:00
# This can also be set as a configuration option in <tt>config/environment.rb</tt>:
2008-04-21 15:31:54 -04:00
#
# config.action_mailer.default_url_options = { :host => "example.com" }
2006-09-02 15:32:45 -04:00
#
2008-04-21 15:31:54 -04:00
# If you do decide to set a default <tt>:host</tt> for your mailers you will want to use the
# <tt>:only_path => false</tt> option when using <tt>url_for</tt>. This will ensure that absolute URLs are generated because
2008-05-14 15:09:49 -04:00
# the <tt>url_for</tt> view helper will, by default, generate relative URLs when a <tt>:host</tt> option isn't
2008-04-21 15:31:54 -04:00
# explicitly provided.
2006-09-02 15:32:45 -04:00
#
# = Sending mail
#
2008-05-14 15:09:49 -04:00
# Once a mailer action and template are defined, you can deliver your message or create it and save it
2006-05-10 01:38:43 -04:00
# for delivery later:
#
# Notifier.deliver_signup_notification(david) # sends the email
# mail = Notifier.create_signup_notification(david) # => a tmail object
# Notifier.deliver(mail)
2008-05-14 15:09:49 -04:00
#
2006-05-10 01:38:43 -04:00
# You never instantiate your mailer class. Rather, your delivery instance
# methods are automatically wrapped in class methods that start with the word
# <tt>deliver_</tt> followed by the name of the mailer method that you would
# like to deliver. The <tt>signup_notification</tt> method defined above is
# delivered by invoking <tt>Notifier.deliver_signup_notification</tt>.
#
2006-09-02 15:32:45 -04:00
#
# = HTML email
#
2007-02-20 19:29:44 -05:00
# To send mail as HTML, make sure your view (the <tt>.erb</tt> file) generates HTML and
2006-05-10 01:38:43 -04:00
# set the content type to html.
#
# class MyMailer < ActionMailer::Base
2005-05-29 12:36:22 -04:00
# def signup_notification(recipient)
2008-05-16 18:01:32 -04:00
# recipients recipient.email_address_with_name
# subject "New account information"
# from "system@example.com"
# body :account => recipient
# content_type "text/html"
2005-05-29 12:36:22 -04:00
# end
2008-05-14 15:09:49 -04:00
# end
2006-05-10 01:38:43 -04:00
#
2006-09-02 15:32:45 -04:00
#
# = Multipart email
#
2006-05-10 01:38:43 -04:00
# You can explicitly specify multipart messages:
2005-05-29 12:36:22 -04:00
#
2006-05-10 01:38:43 -04:00
# class ApplicationMailer < ActionMailer::Base
2005-05-29 12:36:22 -04:00
# def signup_notification(recipient)
# recipients recipient.email_address_with_name
# subject "New account information"
# from "system@example.com"
2008-05-16 18:01:32 -04:00
# content_type "multipart/alternative"
2010-01-18 19:35:41 -05:00
# body :account => recipient
2005-05-29 12:36:22 -04:00
#
# part :content_type => "text/html",
2010-01-18 19:35:41 -05:00
# :data => render_message("signup-as-html")
2005-05-29 12:36:22 -04:00
#
# part "text/plain" do |p|
2010-01-18 19:35:41 -05:00
# p.body = render_message("signup-as-plain")
2009-12-30 04:43:56 -05:00
# p.content_transfer_encoding = "base64"
2005-05-29 12:36:22 -04:00
# end
# end
2006-05-10 01:38:43 -04:00
# end
2008-05-14 15:09:49 -04:00
#
2008-05-25 07:29:00 -04:00
# Multipart messages can also be used implicitly because Action Mailer will automatically
2006-05-10 01:38:43 -04:00
# detect and use multipart templates, where each template is named after the name of the action, followed
# by the content type. Each such detected template will be added as separate part to the message.
2008-05-14 15:09:49 -04:00
#
2006-05-10 01:38:43 -04:00
# For example, if the following templates existed:
2007-02-20 19:29:44 -05:00
# * signup_notification.text.plain.erb
# * signup_notification.text.html.erb
# * signup_notification.text.xml.builder
# * signup_notification.text.x-yaml.erb
2008-05-14 15:09:49 -04:00
#
2006-05-10 01:38:43 -04:00
# Each would be rendered and added as a separate part to the message,
2008-05-16 18:01:32 -04:00
# with the corresponding content type. The content type for the entire
# message is automatically set to <tt>multipart/alternative</tt>, which indicates
# that the email contains multiple different representations of the same email
# body. The same body hash is passed to each template.
2005-05-29 12:36:22 -04:00
#
2008-05-16 18:01:32 -04:00
# Implicit template rendering is not performed if any attachments or parts have been added to the email.
# This means that you'll have to manually add each part to the email and set the content type of the email
# to <tt>multipart/alternative</tt>.
2006-09-02 15:32:45 -04:00
#
2006-05-10 01:38:43 -04:00
# = Attachments
2006-09-02 15:32:45 -04:00
#
2006-05-10 01:38:43 -04:00
# Attachments can be added by using the +attachment+ method.
#
# Example:
#
# class ApplicationMailer < ActionMailer::Base
2005-05-29 12:36:22 -04:00
# # attachments
# def signup_notification(recipient)
# recipients recipient.email_address_with_name
# subject "New account information"
# from "system@example.com"
#
# attachment :content_type => "image/jpeg",
# :body => File.read("an-image.jpg")
#
# attachment "application/pdf" do |a|
# a.body = generate_your_pdf_here()
# end
2004-11-23 20:04:44 -05:00
# end
2008-05-14 15:09:49 -04:00
# end
2004-12-16 12:53:19 -05:00
#
2006-09-02 15:32:45 -04:00
#
2004-12-16 12:53:19 -05:00
# = Configuration options
#
# These options are specified on the class level, like <tt>ActionMailer::Base.template_root = "/my/templates"</tt>
#
2008-05-02 09:45:23 -04:00
# * <tt>template_root</tt> - Determines the base from which template references will be made.
2004-12-16 12:53:19 -05:00
#
# * <tt>logger</tt> - the logger is used for generating information on the mailing run if available.
# Can be set to nil for no logging. Compatible with both Ruby's own Logger and Log4r loggers.
#
2008-05-02 09:45:23 -04:00
# * <tt>smtp_settings</tt> - Allows detailed configuration for <tt>:smtp</tt> delivery method:
2008-05-09 05:38:02 -04:00
# * <tt>:address</tt> - Allows you to use a remote mail server. Just change it from its default "localhost" setting.
# * <tt>:port</tt> - On the off chance that your mail server doesn't run on port 25, you can change it.
# * <tt>:domain</tt> - If you need to specify a HELO domain, you can do it here.
# * <tt>:user_name</tt> - If your mail server requires authentication, set the username in this setting.
# * <tt>:password</tt> - If your mail server requires authentication, set the password in this setting.
2008-08-06 21:08:27 -04:00
# * <tt>:authentication</tt> - If your mail server requires authentication, you need to specify the authentication type here.
2008-05-16 18:01:32 -04:00
# This is a symbol and one of <tt>:plain</tt>, <tt>:login</tt>, <tt>:cram_md5</tt>.
2009-01-11 05:02:54 -05:00
# * <tt>:enable_starttls_auto</tt> - When set to true, detects if STARTTLS is enabled in your SMTP server and starts to use it.
# It works only on Ruby >= 1.8.7 and Ruby >= 1.9. Default is true.
2004-12-16 12:53:19 -05:00
#
2008-05-16 18:01:32 -04:00
# * <tt>sendmail_settings</tt> - Allows you to override options for the <tt>:sendmail</tt> delivery method.
# * <tt>:location</tt> - The location of the sendmail executable. Defaults to <tt>/usr/sbin/sendmail</tt>.
# * <tt>:arguments</tt> - The command line arguments. Defaults to <tt>-i -t</tt>.
2008-05-09 05:38:02 -04:00
#
2009-08-07 23:56:54 -04:00
# * <tt>file_settings</tt> - Allows you to override options for the <tt>:file</tt> delivery method.
# * <tt>:location</tt> - The directory into which emails will be written. Defaults to the application <tt>tmp/mails</tt>.
#
2008-05-09 05:38:02 -04:00
# * <tt>raise_delivery_errors</tt> - Whether or not errors should be raised if the email fails to be delivered.
2004-12-16 12:53:19 -05:00
#
2009-08-07 23:56:54 -04:00
# * <tt>delivery_method</tt> - Defines a delivery method. Possible values are <tt>:smtp</tt> (default), <tt>:sendmail</tt>, <tt>:test</tt>,
2009-10-28 05:17:59 -04:00
# and <tt>:file</tt>. Or you may provide a custom delivery method object eg. MyOwnDeliveryMethodClass.new
2004-12-16 12:53:19 -05:00
#
2008-05-09 05:38:02 -04:00
# * <tt>perform_deliveries</tt> - Determines whether <tt>deliver_*</tt> methods are actually carried out. By default they are,
2004-12-16 12:53:19 -05:00
# but this can be turned off to help functional testing.
#
2008-05-02 09:45:23 -04:00
# * <tt>deliveries</tt> - Keeps an array of all the emails sent out through the Action Mailer with <tt>delivery_method :test</tt>. Most useful
2004-12-16 12:53:19 -05:00
# for unit and functional testing.
2005-02-23 20:48:29 -05:00
#
2008-08-06 21:08:27 -04:00
# * <tt>default_charset</tt> - The default charset used for the body and to encode the subject. Defaults to UTF-8. You can also
2008-05-16 18:01:32 -04:00
# pick a different charset from inside a method with +charset+.
2009-01-11 05:02:54 -05:00
#
2005-10-26 09:04:20 -04:00
# * <tt>default_content_type</tt> - The default content type used for the main part of the message. Defaults to "text/plain". You
2008-08-06 21:08:27 -04:00
# can also pick a different content type from inside a method with +content_type+.
2009-01-11 05:02:54 -05:00
#
2008-05-16 18:01:32 -04:00
# * <tt>default_mime_version</tt> - The default mime version used for the message. Defaults to <tt>1.0</tt>. You
# can also pick a different value from inside a method with +mime_version+.
2009-01-11 05:02:54 -05:00
#
2005-10-26 09:04:20 -04:00
# * <tt>default_implicit_parts_order</tt> - When a message is built implicitly (i.e. multiple parts are assembled from templates
2005-07-01 16:43:40 -04:00
# which specify the content type in their filenames) this variable controls how the parts are ordered. Defaults to
2008-05-16 18:01:32 -04:00
# <tt>["text/html", "text/enriched", "text/plain"]</tt>. Items that appear first in the array have higher priority in the mail client
2005-07-01 16:43:40 -04:00
# and appear last in the mime encoded message. You can also pick a different order from inside a method with
2008-05-16 18:01:32 -04:00
# +implicit_parts_order+.
2009-12-22 14:17:27 -05:00
class Base < AbstractController :: Base
2009-12-27 06:09:20 -05:00
include Quoting
2009-10-17 09:31:11 -04:00
2009-12-30 19:45:56 -05:00
include AbstractController :: Logger
2009-12-20 20:15:31 -05:00
include AbstractController :: Rendering
2009-10-28 08:33:05 -04:00
include AbstractController :: LocalizedCache
2009-10-17 09:31:11 -04:00
include AbstractController :: Layouts
2009-10-18 18:20:14 -04:00
include AbstractController :: Helpers
2010-01-07 08:20:31 -05:00
include AbstractController :: UrlFor
2005-05-29 12:36:22 -04:00
2009-12-25 15:35:40 -05:00
helper ActionMailer :: MailHelper
2010-01-20 06:25:09 -05:00
include ActionMailer :: DeprecatedApi
2009-10-21 19:05:55 -04:00
2010-01-19 09:34:58 -05:00
include ActionMailer :: DeliveryMethods
2004-12-16 12:53:19 -05:00
private_class_method :new #:nodoc:
2004-11-23 20:04:44 -05:00
@@raise_delivery_errors = true
cattr_accessor :raise_delivery_errors
@@perform_deliveries = true
cattr_accessor :perform_deliveries
2008-05-14 15:09:49 -04:00
2010-01-23 19:15:42 -05:00
# Provides a list of emails that have been delivered by Mail
def self . deliveries
Mail . deliveries
end
# Allows you to over write the default deliveries store from an array to some
# other object. If you just want to clear the store, call Mail.deliveries.clear.
def self . deliveries = ( val )
Mail . deliveries = val
end
2004-11-23 20:04:44 -05:00
2010-01-22 05:57:54 -05:00
extlib_inheritable_accessor :default_charset
self . default_charset = " utf-8 "
2005-02-19 16:51:16 -05:00
2010-01-22 07:27:20 -05:00
# TODO This should be used when calling render
2010-01-22 05:57:54 -05:00
extlib_inheritable_accessor :default_content_type
self . default_content_type = " text/plain "
2008-05-14 15:09:49 -04:00
2010-01-22 05:57:54 -05:00
extlib_inheritable_accessor :default_mime_version
self . default_mime_version = " 1.0 "
2005-06-03 06:57:06 -04:00
2009-12-27 20:25:14 -05:00
# This specifies the order that the parts of a multipart email will be. Usually you put
# text/plain at the top so someone without a MIME capable email reader can read the plain
# text of your email first.
#
# Any content type that is not listed here will be inserted in the order you add them to
# the email after the content types you list here.
2010-01-22 05:57:54 -05:00
extlib_inheritable_accessor :default_implicit_parts_order
self . default_implicit_parts_order = [ " text/plain " , " text/enriched " , " text/html " ]
2005-07-01 16:43:40 -04:00
2010-01-20 07:46:59 -05:00
# Expose the internal Mail message
2010-01-23 05:37:34 -05:00
# TODO: Make this an _internal ivar?
2010-01-20 07:46:59 -05:00
attr_reader :message
2010-01-23 05:37:34 -05:00
2010-01-22 05:57:54 -05:00
def headers ( args = nil )
if args
ActiveSupport :: Deprecation . warn " headers(Hash) is deprecated, please do headers[key] = value instead " , caller
@headers = args
else
@message
end
end
def attachments
@message . attachments
end
2009-10-18 20:52:36 -04:00
2005-07-31 04:26:32 -04:00
class << self
2009-10-28 07:08:55 -04:00
2007-11-25 22:36:28 -05:00
def mailer_name
@mailer_name || = name . underscore
end
2010-01-16 06:10:11 -05:00
attr_writer :mailer_name
alias :controller_path :mailer_name
2009-10-28 07:08:55 -04:00
2005-10-16 11:00:27 -04:00
# Receives a raw email, parses it into an email object, decodes it,
# instantiates a new mailer, and passes the email object to the mailer
2008-05-25 07:29:00 -04:00
# object's +receive+ method. If you want your mailer to be able to
# process incoming messages, you'll need to implement a +receive+
2005-10-16 11:00:27 -04:00
# method that accepts the email object as a parameter:
#
# class MyMailer < ActionMailer::Base
# def receive(mail)
# ...
# end
# end
2010-01-15 05:24:06 -05:00
def receive ( raw_mail )
ActiveSupport :: Notifications . instrument ( " action_mailer.receive " ) do | payload |
mail = Mail . new ( raw_mail )
set_payload_for_mail ( payload , mail )
2010-01-13 05:56:11 -05:00
new . receive ( mail )
end
2005-07-31 04:26:32 -04:00
end
2008-07-31 21:09:10 -04:00
def template_root
self . view_paths && self . view_paths . first
end
2009-10-18 18:20:14 -04:00
# Should template root overwrite the whole view_paths?
2008-01-21 15:45:04 -05:00
def template_root = ( root )
2008-07-31 21:09:10 -04:00
self . view_paths = ActionView :: Base . process_view_paths ( root )
2008-01-21 15:45:04 -05:00
end
2008-08-29 16:08:16 -04:00
2010-01-23 19:15:42 -05:00
def delivered_email ( mail )
ActiveSupport :: Notifications . instrument ( " action_mailer.deliver " , :mailer = > self . name ) do | payload |
self . set_payload_for_mail ( payload , mail )
end
end
2010-01-15 05:24:06 -05:00
def set_payload_for_mail ( payload , mail ) #:nodoc:
2010-01-15 07:17:56 -05:00
payload [ :message_id ] = mail . message_id
payload [ :subject ] = mail . subject
payload [ :to ] = mail . to
payload [ :from ] = mail . from
payload [ :bcc ] = mail . bcc if mail . bcc . present?
payload [ :cc ] = mail . cc if mail . cc . present?
payload [ :date ] = mail . date
payload [ :mail ] = mail . encoded
2010-01-15 05:24:06 -05:00
end
2005-07-31 04:26:32 -04:00
end
2010-01-23 06:20:20 -05:00
# Instantiate a new mailer object. If +method_name+ is not +nil+, the mailer
# will be initialized according to the named method. If not, the mailer will
# remain uninitialized (useful when you only need to invoke the "receive"
# method, for instance).
def initialize ( method_name = nil , * args )
super ( )
@message = Mail . new
process ( method_name , * args ) if method_name
end
2010-01-22 08:38:41 -05:00
# TODO Add new delivery method goodness
2010-01-20 07:46:59 -05:00
def mail ( headers = { } )
# Guard flag to prevent both the old and the new API from firing
2010-01-22 05:10:37 -05:00
# Should be removed when old API is deprecated
2010-01-20 07:46:59 -05:00
@mail_was_called = true
2010-01-23 17:34:50 -05:00
m = @message
2010-01-22 07:27:20 -05:00
2010-01-23 19:15:42 -05:00
m . register_for_delivery_notification ( self . class )
2010-01-23 06:20:20 -05:00
# Give preference to headers and fallback to the ones set in mail
2010-01-22 07:56:06 -05:00
content_type = headers [ :content_type ] || m . content_type
2010-01-22 08:38:41 -05:00
charset = headers [ :charset ] || m . charset || self . class . default_charset . dup
mime_version = headers [ :mime_version ] || m . mime_version || self . class . default_mime_version . dup
2010-01-22 07:56:06 -05:00
2010-01-23 06:20:20 -05:00
headers [ :subject ] || = default_subject
quote_fields ( m , headers , charset )
2010-01-22 07:27:20 -05:00
2010-01-23 17:34:50 -05:00
sort_order = headers [ :parts_order ] || self . class . default_implicit_parts_order . dup
2010-01-23 06:20:20 -05:00
responses = if headers [ :body ]
[ { :body = > headers [ :body ] , :content_type = > self . class . default_content_type . dup } ]
2010-01-23 05:37:34 -05:00
elsif block_given?
2010-01-23 06:20:20 -05:00
collector = ActionMailer :: Collector . new ( self ) { render ( action_name ) }
yield ( collector )
2010-01-23 17:34:50 -05:00
# Collect the sort order of the parts from the collector as Mail will always
# sort parts on encode into a "sane" sequence.
sort_order = collector . responses . map { | r | r [ :content_type ] }
2010-01-23 06:20:20 -05:00
collector . responses
2010-01-22 07:27:20 -05:00
else
# TODO Ensure that we don't need to pass I18n.locale as detail
2010-01-23 04:24:19 -05:00
templates = self . class . template_root . find_all ( action_name , { } , self . class . mailer_name )
2010-01-23 06:20:20 -05:00
templates . map do | template |
{ :body = > render_to_body ( :_template = > template ) ,
:content_type = > template . mime_type . to_s }
2010-01-22 07:27:20 -05:00
end
end
2010-01-22 08:38:41 -05:00
2010-01-23 06:20:20 -05:00
content_type || = create_parts_from_responses ( m , responses , charset )
m . content_type = content_type
2010-01-22 08:38:41 -05:00
m . charset = charset
m . mime_version = mime_version
2010-01-23 17:34:50 -05:00
if m . multipart?
m . body . set_sort_order ( sort_order )
2010-01-22 08:38:41 -05:00
m . body . sort_parts!
end
2010-01-22 05:10:37 -05:00
2010-01-20 07:46:59 -05:00
m
end
2010-01-23 06:20:20 -05:00
protected
def default_subject #:nodoc:
2010-01-23 04:24:19 -05:00
mailer_scope = self . class . mailer_name . gsub ( '/' , '.' )
I18n . t ( :subject , :scope = > [ :actionmailer , mailer_scope , action_name ] , :default = > action_name . humanize )
end
2010-01-23 06:20:20 -05:00
def quote_fields ( m , headers , charset ) #:nodoc:
m . subject || = quote_if_necessary ( headers [ :subject ] , charset ) if headers [ :subject ]
m . to || = quote_address_if_necessary ( headers [ :to ] , charset ) if headers [ :to ]
m . from || = quote_address_if_necessary ( headers [ :from ] , charset ) if headers [ :from ]
m . cc || = quote_address_if_necessary ( headers [ :cc ] , charset ) if headers [ :cc ]
m . bcc || = quote_address_if_necessary ( headers [ :bcc ] , charset ) if headers [ :bcc ]
m . reply_to || = quote_address_if_necessary ( headers [ :reply_to ] , charset ) if headers [ :reply_to ]
m . date || = headers [ :date ] if headers [ :date ]
2010-01-22 07:27:20 -05:00
end
2010-01-23 06:20:20 -05:00
def create_parts_from_responses ( m , responses , charset ) #:nodoc:
if responses . size == 1 && ! m . has_attachments?
m . body = responses [ 0 ] [ :body ]
return responses [ 0 ] [ :content_type ]
elsif responses . size > 1 && m . has_attachments?
container = Mail :: Part . new
container . content_type = " multipart/alternate "
responses . each { | r | insert_part ( container , r , charset ) }
m . add_part ( container )
else
responses . each { | r | insert_part ( m , r , charset ) }
end
m . has_attachments? ? " multipart/mixed " : " multipart/alternate "
2005-05-29 12:36:22 -04:00
end
2010-01-23 06:20:20 -05:00
def insert_part ( container , response , charset ) #:nodoc:
response [ :charset ] || = charset
part = Mail :: Part . new ( response )
container . add_part ( part )
2005-05-29 12:36:22 -04:00
end
2005-02-19 16:51:16 -05:00
2004-11-23 20:04:44 -05:00
end
end