来自文档,我认为它不应该发送确认电子邮件,但它正在这样做。
以下是我对可邀操作的设置:
class Users::InvitationsController < Devise::InvitationsController
def multiple_create
if params[:multiple_emails].blank?
build_resource
render :new, notice: "something went wrong"
else
params[:multiple_emails].each do |email|
User.invite!({email: email}, current_user) # current_user will be set as invited_by
end
if current_user.errors.empty?
set_flash_message :notice, :send_instructions, :email => params[:multiple_emails]
respond_with current_user, :location => after_invite_path_for(current_user)
else
respond_with_navigational(current_user) { render :new }
end
end
end
end
答案 0 :(得分:1)
在某些情况下,您必须使用:confirmable
进行用户注册,并希望避免发送带有邀请的确认信:
class User < ApplicationRecord
after_create :skip_confirmation_notification!, unless: Proc.new { self.invitation_token.nil? }
end
答案 1 :(得分:0)
要避免设计确认邮件,您必须从用户模型中排除:confirmable
选项。
例如,更改:
class User
devise :registerable, :confirmable
end
要:
class User
devise :registerable
end
答案 2 :(得分:-2)
devise_invitable repo on github上的文档非常清楚如何跳过发送邀请电子邮件。请查看用法下的第二个代码段,该代码段前面有此文字:
如果您想创建邀请但不发送邀请,可以进行设置 skip_invitation为true。