在我的 ROR 应用程序中,我试图在注册用户注册时向他们发送确认电子邮件,我的网站目前位于本地主机上。我收到此错误:
"undefined method `recipients' for #<UserMailer:0x3d841a0>"
这是我的代码;
发展.rb
config.action_mailer.delivery_method = :smtp
config.action_mailer.default_url_options = { :host => "localhost:3000"}
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => "587",
:authentication => :login,
:user_name => "myemailid@gmail.com",
:password => "myrealpassword"
}
用户控制器.rb
def new
UserMailer.registration_confirmation(@user).deliver
end
def create
@user = User.new(params[:user])
if @user.save
UserMailer.registration_confirmation(@user).deliver
sign_in @user
flash[:success] = "Welcome!"
redirect_to @user
else
render 'new'
end
end
user_mailer.rb
class UserMailer < ActionMailer::Base
def registration_confirmation(user)
recipients user.email
from "myemailid@gmail.com"
subject "Thank you for registration"
body :user => user
end
end