Sha256: ef98d601349b046026729529b54b305d6e8d3f98986c51a136b4f271e5e6cd80

Contents?: true

Size: 691 Bytes

Versions: 77

Compression:

Stored size: 691 Bytes

Contents

# frozen_string_literal: true

module Spotlight
  # Mailer for contacting new exhibit curators or administrators
  class InvitationMailer < ActionMailer::Base
    include Devise::Mailers::Helpers

    def exhibit_invitation_notification(role)
      initialize_from_record(role.user)
      @role = role
      @key = if @role.resource.is_a?(Spotlight::Site)
               'exhibits_admin_invitation_mailer'
             else
               'invitation_mailer'
             end
      mail(to: role.user.email,
           from: mailer_sender(devise_mapping),
           subject: I18n.t("spotlight.#{@key}.invitation_instructions.subject", exhibit_name: @role.resource.title))
    end
  end
end

Version data entries

77 entries across 77 versions & 1 rubygems

Version Path
blacklight-spotlight-3.6.0.beta7 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.5.0.3 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.6.0.beta6 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.6.0.beta5 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.6.0.beta4 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.6.0.beta3 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.6.0.beta1 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.5.0.2 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.5.0.1 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.5.0 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.4.4.1 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.4.4 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.4.3 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.4.2.2 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.4.2.1 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.4.2 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.4.1 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.4.0 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.3.0 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.2.0 app/mailers/spotlight/invitation_mailer.rb