【发布时间】:2016-03-02 23:32:24
【问题描述】:
初学者 Rails 错误 我正在尝试在文章更新时向所有当前用户发送电子邮件。
我已经使用我的应用程序设置了 sendgrid 和 devise,并且能够让邮件程序通过 rails 控制台工作。但是,由于某种原因,我在更新文章时收到了undefined method email for #<User::ActiveRecord_Relation:0x007f8685aebec0>。
ArticleNotificationMailer
class ArticleNotificationMailer < ApplicationMailer
default from: 'you@example.com'
def new_article(user, article)
@user = user
@article = article
mail(
to: @user.email,
subject: "New update to article #{article.title}"
)
end
end
new_article.html.erb
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-type" />
</head>
<body>
<h1>New article on website "<%= @article.title %>"</h1>
<p>
<%= @article.body %>
</p>
<p>
<%= link_to "View Comment on site", article_url(@article, anchor: "updates=#{@article.id}") %>
</p>
</body>
</html>
文章控制器
我正在使用ArticleNotificationMailer.new_article(@user, @article).deliver
def update
respond_to do |format|
if @article.update(article_params)
ArticleNotificationMailer.new_article(@user, @article).deliver
format.html { redirect_to @article, notice: 'Article was successfully updated.' }
format.json { render :show, status: :ok, location: @article }
else
format.html { render :edit }
format.json { render json: @article.errors, status: :unprocessable_entity }
end
end
end
错误信息
NoMethodError in ArticlesController#update
undefined method `email' for #<User::ActiveRecord_Relation:0x007f8685aebec0>
mail(
to: @user.email,
subject: "New post to articles #{article.title}"
)
end
Rails 控制台
>> u = User.last
>> a = Article.first
>> ActionNotificationMailer.new_article(u, a).deliver_now
【问题讨论】:
标签: ruby-on-rails actionmailer sendgrid