例如,如果邮件程序send_signup_mail
很重并需要一段时间才能完成,那么我怎样才能使sign_in_and_redirect
先执行并在渲染视图后在后台发送邮件。
在下面的代码中,这只需要按线性顺序执行操作,但我认为这不是实际发生的事情,因为重定向直到邮件发送后才完成。
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
def facebook
# You need to implement the method below in your model (e.g. app/models/user.rb)
@fb_response = request.env["omniauth.auth"]
@user = User.from_omniauth(@fb_response)
if @user.persisted?
# Update user token
@user.fb_token = @fb_response.credentials.token
# Sign in
sign_in_and_redirect @user, :event => :authentication #this will throw if @user is not activated
set_flash_message(:notice, :success, :kind => "Facebook") if is_navigational_format?
# Deliver signup mail
UserNotifier.send_signup_email(@user).deliver
else
session["devise.facebook_data"] = request.env["omniauth.auth"]
redirect_to new_user_registration_url
end
end
end
谢谢!
答案 0 :(得分:1)
您应该使用后台作业发送电子邮件,以免影响用户体验。我建议你研究这个宝石:
正确配置此gem后,您只需使用
即可UserNotifier.delay.send_signup_email(@user)
在后台发送您的电子邮件。