Sha256: 9f29182cd622e493f87a841bf735660f371deb259f174881f4b18f440ffd111d

Contents?: true

Size: 1.19 KB

Versions: 5

Compression:

Stored size: 1.19 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

    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

        if opts[:invitation_instructions]
          opts[:subject] = I18n.t("devise.mailer.#{opts[:invitation_instructions]}.subject", organization: user.organization.name)
        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 = {}, &block)
      with_user(user) do
        @organization = user.organization
        super
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
decidim-core-0.1.0 app/mailers/decidim/decidim_devise_mailer.rb
decidim-core-0.0.8.1 app/mailers/decidim/decidim_devise_mailer.rb
decidim-core-0.0.7 app/mailers/decidim/decidim_devise_mailer.rb
decidim-core-0.0.6 app/mailers/decidim/decidim_devise_mailer.rb
decidim-core-0.0.5 app/mailers/decidim/decidim_devise_mailer.rb