Sha256: 5d4a80f2b09377a52c69e96c2c3575ee5ed4be81c779ae6bda85d99d048b8f98

Contents?: true

Size: 1.28 KB

Versions: 13

Compression:

Stored size: 1.28 KB

Contents

class Notifier < ActionMailer::Base
  include Resque::Mailer

  def message_notification(message_id)
    message = Message.find(message_id)
    I18n.locale = message.receiver.profile.locale.try(:to_sym) || I18n.default_locale
    from = "#{LibraryGroup.system_name(message.receiver.profile.locale)} <#{LibraryGroup.site_config.user.email}>"
    if message.subject
      subject = message.subject
    else
      subject = I18n.t('message.new_message_from_library', library: LibraryGroup.system_name(message.receiver.user.profile.locale))
    end
    if message.sender
      @sender_name = message.sender.username
    else
      @sender_name = LibraryGroup.system_name(message.receiver.profile.locale)
    end
    @message = message
    @locale = message.receiver.profile.locale
    mail(from: from, to: message.receiver.email, subject: subject)
  end

  def manifestation_info(user_id, manifestation_id)
    user = User.find(user_id)
    manifestation = Manifestation.find(manifestation_id)
    from = "#{LibraryGroup.system_name(user.profile.locale)} <#{LibraryGroup.site_config.user.email}>"
    subject = "#{manifestation.original_title} : #{LibraryGroup.system_name(user.profile.locale)}"
    @user = user
    @manifestation = manifestation
    mail(from: from, to: user.email, subject: subject)
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
enju_leaf-1.1.4 app/mailers/notifier.rb
enju_leaf-1.1.3 app/mailers/notifier.rb
enju_leaf-1.1.2 app/mailers/notifier.rb
enju_leaf-1.1.1 app/mailers/notifier.rb
enju_leaf-1.1.0 app/mailers/notifier.rb
enju_leaf-1.1.0.rc22 app/mailers/notifier.rb
enju_leaf-1.1.0.rc21 app/mailers/notifier.rb
enju_leaf-1.1.0.rc20 app/mailers/notifier.rb
enju_leaf-1.1.0.rc19 app/mailers/notifier.rb
enju_leaf-1.1.0.rc18 app/mailers/notifier.rb
enju_leaf-1.1.0.rc17 app/mailers/notifier.rb
enju_leaf-1.1.0.rc16 app/mailers/notifier.rb
enju_leaf-1.1.0.rc15 app/mailers/notifier.rb