Sha256: e39215df3098602a1f26106c3df9ef7567951b00e85e86a4bb6f6d723dfef3fc
Contents?: true
Size: 2 KB
Versions: 1
Compression:
Stored size: 2 KB
Contents
# Added to effective email templates mailers module EffectiveEmailTemplatesMailer extend ActiveSupport::Concern def mail(headers = {}, &block) email_template = Effective::EmailTemplate.where(template_name: action_name).first return super if email_template.blank? assigns = (@assigns || {}) # Parse body content if given body = assigns.delete(:body) || headers[:body] || headers['body'] email_template.body = body if body.present? # Parse subject content if explicitly given # Otherwise the :subject key is a default and should be ignored in favor of the email template subject instead subject = assigns.delete(:subject) || headers[:subject] || headers['subject'] email_template.subject = subject if subject.present? # If the body or subject are nil, they will be populated from the email_template # Add any _url helpers assigns = route_url_assigns(email_template, assigns).merge(assigns) # Render from the template, possibly with updated body and subject rendered = email_template.render(assigns) # Merge any other passed values merged = rendered.merge(headers.except(:body, :subject, 'body', 'subject')) # Finalize the subject_for Proc if respond_to?(:subject_for) # EffectiveResourcesMailer if (prefix = EffectiveResources.mailer_subject_prefix_hint).present? subject = subject_for(action_name, merged[:subject], email_template, merged) if subject.start_with?("#{prefix}#{prefix}") || subject.start_with?("#{prefix} #{prefix}") subject = subject.sub(prefix, '') end merged[:subject] = subject end end super(merged) end private def route_url_assigns(email_template, existing) route_variables = email_template.template_variables .select { |name| name.ends_with?('_url') } .reject { |name| existing.key?(name) || existing.key?(name.to_sym) } route_variables.inject({}) do |h, name| h[name] = public_send(name) if respond_to?(name); h end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
effective_email_templates-1.7.0 | app/mailers/concerns/effective_email_templates_mailer.rb |