gpt4 book ai didi

ruby-on-rails - 使用 Devise 发送重置密码指令

转载 作者:数据小太阳 更新时间:2023-10-29 07:40:14 24 4
gpt4 key购买 nike

我正在尝试使用 devise 和 Rails 发送重置密码指令。用户单击“忘记密码链接”,然后输入电子邮件地址以接收重置密码的说明。我看到电子邮件已在开发日志中发送,但我没有收到测试电子邮件,并且看到以下错误。关于我做错了什么的任何想法?

Timeout::Error - execution expired

在 user_mailer.rb 中,我有以下内容:

class UserMailer < ActionMailer::Base
include Devise::Mailers::Helpers

default :from => ENV["EMAIL_ADDRESS"]

def reset_password_instructions(record, opts={})
mail(:to => record, :subject => "Reset Password Instructions")
end

end

我正在开发中进行测试,所以我的 development.rb 具有以下内容:

# ActionMailer Config
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
config.action_mailer.delivery_method = :smtp
# change to true to allow email to be sent during development
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
config.action_mailer.default :charset => "utf-8"

config.action_mailer.smtp_settings = {
:address => "smtp.mandrillapp.com",
:port => 25,
:user_name => ENV["MANDRILL_USERNAME"],
:password => ENV["MANDRILL_API_KEY"],
:enable_starttls_auto => true, # detects and uses STARTTLS
:authentication => 'login', # Mandrill supports 'plain' or 'login'
:domain => 'mydomain.com', # your domain to identify your server when connecting
}

在 user.rb 中,我有以下内容:

def send_reset_password_instructions
UserMailer.reset_password_instructions(self.email).deliver
end

正如我上面提到的,我在超时前看到日志中正在生成电子邮件 - 下面是完整的堆栈跟踪:

Started GET "/users/password/new" for 127.0.0.1 at 2013-10-10 17:32:24 -0500
Processing by Devise::PasswordsController#new as HTML
Rendered devise/passwords/new.html.erb within layouts/application (3.7ms)
Rendered layouts/_navigation.html.erb (1.6ms)
Rendered layouts/_messages.html.erb (0.1ms)
Completed 200 OK in 101ms (Views: 100.6ms | ActiveRecord: 0.0ms)


Started POST "/users/password" for 127.0.0.1 at 2013-10-10 17:32:28 -0500
Processing by Devise::PasswordsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"CebAAlhJgxz1yDEi5BvsJ/dOdUpAHl08yrG1NCVgi/o=", "user"=>{"email"=>"me@gmail.com"}, "commit"=>"Continue"}
User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'me@gmail.com' LIMIT 1
Rendered user_mailer/reset_password_instructions.html.erb (0.1ms)

Sent mail to me@gmail.com (30018ms)
Date: Thu, 10 Oct 2013 17:32:28 -0500
From: info@mydomain.com
To: me@gmail.com
Message-ID: <52572afc78c10_e9e43ffb7d69b4ec31274@Patricks-MacBook-Air.local.mail>
Subject: Reset Password Instructions
Mime-Version: 1.0
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Hello!</p>

<p>Someone has requested a link to change your password. You can do this through the link below.</p>



<p>If you didn't request this, please ignore this email.</p>
<p>Your password won't change until you access the link above and create a new one.</p>

Completed 500 Internal Server Error in 30044ms

最佳答案

关于ruby-on-rails - 使用 Devise 发送重置密码指令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19307545/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com