如何使用mail_form gem和sidekiq发送异步电子邮件?

时间:2015-07-22 01:15:25

标签: ruby-on-rails ruby sidekiq mail-form

我使用mail_form gem并拥有以下代码

 def create
    @contact = Contact.new(contact_params)
    @contact.request = request
    respond_to do |format|
      if @contact.deliver
        format.html { redirect_to root_path, notice: "Thank you for your message."}
      else
        format.html {render :new, error: "There was a problem with sending your message."}
      end
    end
  end

当我提交联系表单时,发送邮件并重定向到主页需要几秒钟。

如何使用sidekiq使此过程异步?

1 个答案:

答案 0 :(得分:-1)