zoukankan      html  css  js  c++  java
  • devise 异步发邮件

    http://blog.devinterface.com/2011/03/how-to-send-email-asynchronously-using-devise-and-rails3/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+devinterfaceblog+%28DevInterface+Blog%29

    How to send email asynchronously using Devise and Rails3

    Hello everyone.

    I’d show a workaround to send email asynchronously using Devise and Rails3.

    Suppose we have already up and running our application with Devise and delayed_job correctly installed.

    A first attempt was to add in config/initializers the following file (devise_async.rb):

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    #devise_async.rb
    module Devise
      module Models
        module Confirmable
          handle_asynchronously :send_confirmation_instructions
        end

        module Recoverable
          handle_asynchronously :send_reset_password_instructions
        end

        module Lockable
          handle_asynchronously :send_unlock_instructions
        end
      end
    end

    This workaround has worked in part: the send method has been properly enqueued in the database, but when delayed_job tries to fire the job, the following error is raised:

    1
    2
    User#send_confirmation_instructions_without_delay failed with NoMethodError: undefined method 'send_confirmation_instructions_without_delay' for # - 1 failed attempts
    [Worker(host:stefano-desktop pid:13153)]

    As you can see, the job is trying to call the wrong send method: send_confirmation_instructions_without_delay.

    At this point, I’ve implemented an even more dirty hack, overriding Devise’s methods using the syntax specified by intridea to send emails in the background:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    #devise_async.rb
    module Devise
      module Models
        module Confirmable
          # Send confirmation instructions by email
          def send_confirmation_instructions
            generate_confirmation_token! if self.confirmation_token.nil?
            ::Devise.mailer.delay.confirmation_instructions(self)
          end
        end

        module Recoverable
          # Resets reset password token and send reset password instructions by email
          def send_reset_password_instructions
            generate_reset_password_token!
            ::Devise.mailer.delay.reset_password_instructions(self)
          end
        end

        module Lockable
          # Send unlock instructions by email
          def send_unlock_instructions
            ::Devise.mailer.delay.unlock_instructions(self)
          end
        end
      end
    end

    This solution, however, is too tied to the implementation of Devise and is therefore not a good one (besides being really really dirty).

    The latest idea, which represents the solution I’ve used is implemented as follows: use the alias_method in this way:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    #devise_async.rb
    module Devise
      module Models
        module Confirmable
          alias_method :send_confirmation_instructions_without_delay, :send_confirmation_instructions
          handle_asynchronously :send_confirmation_instructions
        end

        module Recoverable
          alias_method :send_reset_password_instructions_without_delay, :send_reset_password_instructions
          handle_asynchronously :send_reset_password_instructions
        end

        module Lockable
          alias_method :send_unlock_instructions_without_delay, :send_unlock_instructions
          handle_asynchronously :send_unlock_instructions
        end
      end
    end

    This latest hack works a treat; is not the best but let you send mail with Devise asynchronously.

    If you have any better solutions, do not hesitate to share.

  • 相关阅读:
    最新免费网络加速器,游戏加速器下载_网络加速器永久免费版哪个好?
    HTML中特殊符号编码对照表,html特殊符号编码都有哪些?
    超融合架构在汽车行业前景及未来发展
    好用的前端开发小工具
    layui省市区三级联动城市选择
    企业超融合解决方案怎么做?超融合基础架构 超融合优势是什么?
    最新免费网络加速器
    什么是超融合?
    面临网络安全危机时需要思考的20个问题
    2019年超融合将飞速发展 三大趋势不容错过
  • 原文地址:https://www.cnblogs.com/lexus/p/2151435.html
Copyright © 2011-2022 走看看