Sha256: 825daaf2d77428742a7d269c19ed1348e549eeea38928a01a26c4fc6d1b6af63
Contents?: true
Size: 1.32 KB
Versions: 2
Compression:
Stored size: 1.32 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)) 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)) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mailboxer-0.10.1 | app/mailers/message_mailer.rb |
mailboxer-0.10.0 | app/mailers/message_mailer.rb |