设计:我如何发送可确认的电子邮件但不需要确认

Devise: How can I send the confirmable email but not require confirmation by while

我想发送邮件给用户确认,但现在阻止用户访问并不有趣,尽管控制谁确认谁不确认以及将来需要确认会很棒。

在我的用户模型中添加了下面的块,但它使设计甚至无法发送邮件

  protected
  def confirmation_required?
    false
  end

有什么建议吗?

您必须在 devise.rb 上设置 config.allow_unconfirmed_access_for = nil 以允许未经确认的访问。