Sha256: df4a348c03b064aaaf7ca927ecc252e87adc0fa075b0d07733b563724d949fe0

Contents?: true

Size: 1.39 KB

Versions: 6

Compression:

Stored size: 1.39 KB

Contents

# frozen_string_literal: true

module Decidim
  # A custom mailer for Devise so we can tweak the invitation instructions for
  # each role and use a localised version.
  class DecidimDeviseMailer < ::Devise::Mailer
    include LocalisedMailer
    include Decidim::SanitizeHelper
    helper_method :decidim_escape_translated, :decidim_sanitize_translated, :translated_attribute

    layout "decidim/mailer"

    # Sends an email with the invitation instructions to a new user.
    #
    # user  - The User that has been invited.
    # token - The String to be sent as a token to verify the invitation.
    # opts  - A Hash with options to send the email (optional).
    def invitation_instructions(user, token, opts = {})
      with_user(user) do
        @token = token
        @organization = user.organization
        @opts = opts

        if opts[:invitation_instructions]
          opts[:subject] =
            I18n.t("devise.mailer.#{opts[:invitation_instructions]}.subject",
                   organization: organization_name(user.organization))
        end
      end

      devise_mail(user, opts[:invitation_instructions] || :invitation_instructions, opts)
    end

    private

    # Overwrite devise_mail so we can inject the organization from the user.
    def devise_mail(user, action, opts = {}, &)
      with_user(user) do
        @organization = user.organization
        super
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
decidim-core-0.29.1 app/mailers/decidim/decidim_devise_mailer.rb
decidim-core-0.29.0 app/mailers/decidim/decidim_devise_mailer.rb
decidim-core-0.29.0.rc4 app/mailers/decidim/decidim_devise_mailer.rb
decidim-core-0.29.0.rc3 app/mailers/decidim/decidim_devise_mailer.rb
decidim-core-0.29.0.rc2 app/mailers/decidim/decidim_devise_mailer.rb
decidim-core-0.29.0.rc1 app/mailers/decidim/decidim_devise_mailer.rb