Sha256: ef98d601349b046026729529b54b305d6e8d3f98986c51a136b4f271e5e6cd80

Contents?: true

Size: 691 Bytes

Versions: 76

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

76 entries across 76 versions & 1 rubygems

Version Path
blacklight-spotlight-4.3.6 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.3.5 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.3.4 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.3.3 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.3.2 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.3.1 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.3.0 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.2.0 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.1.2 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.1.1 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.1.0 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.0.3 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.0.2 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.0.1 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-4.0.0 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.6.0.beta10 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.6.0.beta9 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.6.0.beta8 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.5.0.4 app/mailers/spotlight/invitation_mailer.rb
blacklight-spotlight-3.6.0.beta7 app/mailers/spotlight/invitation_mailer.rb