我正在努力构建我的邮件程序,但我一直在努力:
错误的参数数量(0表示1)
叫我疯了,但我觉得我正确定义了一切:
控制器(为简洁而截断):
def create
@cms484 = Cms484.new(cms484_params)
respond_to do |format|
if @cms484.save
SendLink.message(@cms484).deliver_later
format.html { redirect_to cms484s_path, notice: 'Cms484 was successfully created.' }
format.json { render :show, status: :created, location: @cms484 }
else
format.html { render :new }
format.json { render json: @cms484.errors, status: :unprocessable_entity }
end
end
SendLink.rb:
class SendLink < ApplicationMailer
def message(cms484)
@cms484 = cms484
mail(
:subject => 'Hello from Postmark',
:to => @cms484.recipient ,
:from => 'info@mysite.com',
:html_body => '<strong>Hello</strong> user!.',
end
end
其他人可以看到大海捞针还是我完全错过了其他东西?
如果重要的话,我正在使用Postmark进行交付,并根据文档在application.rb文件中定义了这些参数。认为这是一个更简单的问题。
修改 完整的错误:
Completed 500 Internal Server Error in 76ms
ArgumentError (wrong number of arguments (0 for 1)):
app/mailers/send_link.rb:2:in `message'
app/mailers/send_link.rb:4:in `message'
app/controllers/cms484s_controller.rb:38:in `block in create'
app/controllers/cms484s_controller.rb:36:in `create'
答案 0 :(得分:5)
我有一个类似的问题,我在其中命名了我的ActionMailer方法“消息”,结果发现它是Rails中的保留字并且引发了错误。
我认为“邮件”是一个保留字,其中“电子邮件”不是。
答案 1 :(得分:0)
mail ...
中的 SendLink.rb
行看起来不对,请将其更改为
mail(
:subject => 'Hello from Postmark',
:to => @cms484.recipient ,
:from => 'info@mysite.com',
:html_body => '<strong>Hello</strong> user!.')
答案 2 :(得分:0)
好的,所以我决定重写它,看哪 - 它有效。为什么或与之前的版本有什么不同(除了方法电子邮件与邮件之外,肯定不是吗?),我不知道。如果你能看到它是什么,请指出我!
Send_link.rb:
class SendLink < ApplicationMailer
def email(cms484)
@cms484 = cms484
mail(
:subject => 'Hello from Postmark',
:to => @cms484.recipient ,
:from => 'info@mysite.com',
)
end
end
控制器:
def create
@cms484 = Cms484.new(cms484_params)
respond_to do |format|
if @cms484.save
SendLink.email(@cms484).deliver_later
format.html { redirect_to cms484s_path, notice: 'Cms484 was successfully created.' }
format.json { render :show, status: :created, location: @cms484 }
else
format.html { render :new }
format.json { render json: @cms484.errors, status: :unprocessable_entity }
end
end
端