Rails设计不发送确认电子邮件,但需要



我设置了Devise并能够创建一个配置文件。当我创建配置文件并尝试登录时,我收到一条错误消息,我没有确认我的帐户,

我从来没有收到应该用来确认我自己账户的电子邮件。我选择这样一个选项是错了,还是没有让Devise给我发电子邮件?

这是我曾经做过的迁移:

class DeviseCreateUsers < ActiveRecord::Migration
  def self.up
    create_table(:users, :options => 'ENGINE=InnoDB DEFAULT CHARSET=utf8') do |t|
      t.database_authenticatable :null => false
      t.recoverable
      t.rememberable
      t.trackable
      t.confirmable
      t.encryptable
      t.column "first_name", :string  
      t.column "last_name", :string
      t.column "organization_name", :string
      t.timestamps
    end
    add_index :users, :email,                :unique => true
  end
  def self.down
    drop_table :users
  end
end

开发模式中,您必须将此行添加到config/environments/development.rb

config.action_mailer.default_url_options = { :host => 'localhost:3000' }

然后,检查服务器日志以查看邮件。你应该找到这样的东西:

呈现的设计/邮件/确认_说明.html.erb(19.5ms)

已将邮件发送到example@mail.com(21951ms)

日期:2011年5月26日星期四12:56:55+0200

发件人:sender@mail.com

答复:sender@mail.com

收件人:example@mail.com

消息ID:<4dde31f7944bd_5ac277e0e4785c6@L-Portable.mail>

主题:确认说明

Mime版本:1.0

内容类型:text/html;

charset=UTF-8

Content-Transfer-Encoding: 7bit
<p>Welcome example@mail.com!</p>
<p>You can confirm your account through the link below:</p>
<p><a href="http://localhost:3000/users/confirmation?confirmation_token=Hi0tyRQU8cCFpAbatYFf">Confirm my account</a></p>

您还需要将此行放入config/initializers/devise.rb

config.mailer_sender = "sender@mail.com"

如果您的日志中确实没有此邮件,您仍然可以通过在数据库中获取confirmation_token的值来验证您的帐户,并转到此链接

http://localhost:3000/users/confirmation?confirmation_token= #PUT_YOUR_TOKEN_HERE

这应该会奏效。

干杯

相关内容

  • 没有找到相关文章

最新更新