is there a global way I can write a before_filter for my user mailer, that checks to see if the user has emails disabled? Right now every mailer I have checks the user's setting, this is very redundant. I would like to DRY this up by having a before_filter that works for all mailers.

class UserMailer < ActionMailer::Base

 before_filter :check_if_we_can_mail_the_user

 ....

 private

   def check_if_we_can_mail_the_user
     if current_user.mail_me == true
       #continue
     else
      Do something to stop the controller from continuing to mail out
     end
   end
 end

Possible? Has anyone done something like this? Thanks

link|improve this question

70% accept rate
there is no such thing, because you would normally put this kind of logic into fe. the user-model. the other problem is, that in a lot of cases you send mails asynchrounus and don't have a thing like 'current_user' – phoet Dec 21 '11 at 20:22
feedback

2 Answers

I haven't done this, but I've done similar things with an email interceptor.

class MailInterceptor    
    def self.delivering_email(message)
        if User.where( :email => message.to ).first.mail_me != true
            message.perform_deliveries = false
        end
    end
end

You won't have access current_user, so you find the user by email, which should already be in the mail object as the 'to' field.

There's a good Railscast covering setting up email interceptors. http://railscasts.com/episodes/206-action-mailer-in-rails-3?view=asciicast

link|improve this answer
feedback

Maybe check out https://github.com/kelyar/mailer_callbacks. It looks like it will do what you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.