Sha256: f648dde3e96a6e30a2adeef4dc75168daf3544454a0e11ad072d5ba35ed96dee

Contents?: true

Size: 821 Bytes

Versions: 3

Compression:

Stored size: 821 Bytes

Contents

class NotificationMailer < ActionMailer::Base
  default :from => Mailboxer.default_from
  #Sends and email for indicating a new notification to a receiver.
  #It calls new_notification_email.
  def send_email(notification,receiver)
    new_notification_email(notification,receiver)
  end

  include ActionView::Helpers::SanitizeHelper

  #Sends an email for indicating a new message for the receiver
  def new_notification_email(notification,receiver)
    @notification = notification
    @receiver = receiver
    subject = message.subject.to_s
    subject = strip_tags(subject) unless subject.html_safe?
    mail(:to => receiver.send(Mailboxer.email_method), :subject => "You have a new notification: " + subject) do |format|
      format.html {render __method__}
      format.text {render __method__}
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mailboxer-0.3.3 app/mailers/notification_mailer.rb
mailboxer-0.3.2 app/mailers/notification_mailer.rb
mailboxer-0.3.1 app/mailers/notification_mailer.rb