我有Devise设置和woking很棒。我正在使用确认,并根据他们的两步注册流程指南进行了修改:
我最后一个要求是我遇到了麻烦。
我们拥有2个场景
1)用户可以注册为新
2)登录用户(current_user)可以创建新用户。 当登录用户创建新用户时,我希望能够将他们的电子邮件添加到发送给新创建用户的确认电子邮件中
在发给新注册用户的电子邮件中,如果用户是由登录用户创建的,我需要以某种方式传入current_user.email。然后我会做一个简单的检查,并在电子邮件中添加一些额外的文本。
目前确认_instructions.html.erb:
<p>Welcome <%= @resource.email %>!</p>
<p>You can confirm your account email through the link below:</p>
<p><%= link_to 'Confirm account', confirmation_url(@resource, :confirmation_token => @resource.confirmation_token) %></p>
我需要的是像
<p>Welcome <%= @resource.email %>!</p>
<% if !@user.email.nil? %>
<p> some additional welcome text here from <%= @user.email %> </p>
<% end %>
<p>You can confirm your account email through the link below:</p>
<p><%= link_to 'Confirm account', confirmation_url(@resource, :confirmation_token => @resource.confirmation_token) %></p>
我一直在使用自定义邮件来回走动,没有任何乐趣。 有人可以帮助我,我相信这里有一些简单的东西。
有关信息(我知道这不是最好的方法,但我们将一个非常快速的应用程序放在一起用于演示目的)用户通过输入am电子邮件地址来创建新联系人。如果用户表中不存在电子邮件地址,则会创建一个新用户,然后创建联系人关系(控制器的片段):
class DashboardController < ApplicationController
before_filter :authenticate_user!
def show
@contacts = current_user.contacts
end
def createcontact
user2 = User.find_by_email(params[:contact_email])
if user2.nil?
newContact = User.create(:email => params[:contact_email])
if newContact.save
current_user.newUserContact(newContact)
redirect_to dashboard_path, :notice => "conact has been saved as well as a new contact"
else
redirect_to dashboard_path, :notice => "ERROR saving contact"
end
else
.
.
.
.
答案 0 :(得分:4)
Follow this tutorial用于设置自定义邮件程序。
在config / initializers / devise.rb中:
config.mailer = "UserMailer".
在app / mailers文件夹中创建一个继承自Devise邮件程序的新邮件:
# user_mailer.rb
class UserMailer < Devise::Mailer
def invite(sender, recipient)
@sender = sender
@recipient = recipient
mail( :to => recipient.email,
:subject => "Invite by #{sender.name}"
)
end
end
现在,将您的设计邮件程序视图移动到文件夹app / views / user_mailer。创建一个新的电子邮件视图,您可以在其中使用变量@sender和@recipient。
# invite.html.erb
<p>Welcome <%= @recipient.email %>!</p>
<% if @sender.email? %>
<p> some additional welcome text here from <%= @sender.email %> </p>
<% end %>
现在,在您的控制器中,您可以调用以下内容:
UserMailer.invite(current_user, newContact).deliver