Sha256: 9de6c057280a9aa89c485a6f6d12054909f237b1b044ad921b84d738828ed9d6

Contents?: true

Size: 1.46 KB

Versions: 2

Compression:

Stored size: 1.46 KB

Contents

class MessageMailer < ActionMailer::Base
  default :from => Mailboxer.default_from
  #Sends and email for indicating a new message or a reply to a receiver.
  #It calls new_message_email if notifing a new message and reply_message_email
  #when indicating a reply to an already created conversation.
  def send_email(message, receiver)
    if message.conversation.messages.size > 1
      reply_message_email(message,receiver)
    else
      new_message_email(message,receiver)
    end
  end

  include ActionView::Helpers::SanitizeHelper

  #Sends an email for indicating a new message for the receiver
  def new_message_email(message,receiver)
    @message = message
    @receiver = receiver
    subject = message.subject.to_s
    subject = strip_tags(subject) unless subject.html_safe?
    mail :to => receiver.send(Mailboxer.email_method,message),
         :subject => t('mailboxer.message_mailer.subject_new', :subject => subject),
         :template_name => 'new_message_email'
  end

  #Sends and email for indicating a reply in an already created conversation
  def reply_message_email(message,receiver)
    @message = message
    @receiver = receiver
    subject = message.subject.to_s
    subject = strip_tags(subject) unless subject.html_safe?
    mail :to => receiver.send(Mailboxer.email_method,message),
         :subject => t('mailboxer.message_mailer.subject_reply', :subject => subject),
         :template_name => 'reply_message_email'
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mailboxer-without-notification-0.11.2 app/mailers/message_mailer.rb
mailboxer-without-notification-0.11.1 app/mailers/message_mailer.rb