我正在尝试简单地联系我们表单,因此我需要实现邮件程序。
我创建了一个控制器:
class ContactusController < ApplicationController
def index
@contact_us = Contactus.new
end
def new
redirect_to(action: 'index')
end
def create
@contact_us = Contactus.new(params[:contactus])
if @contact_us.deliver
flash[:notice] = "Thank-you, We will contact you shortly."
else
flash[:error] = "Oops!!! Something went wrong. Your mail was not sent."
end
render :index
end
end
由于我不想保存我使用ActiveModel的数据:
class Contactus
extend ActiveModel::Naming
include ActiveModel::Conversion
include ActiveModel::Validations
include ActionView::Helpers::TextHelper
attr_accessor :name, :email, :message
validate :name,
:presence => true
validates :email,
:format => { :with => /\b[A-Z0-9._%a-z\-]+@(?:[A-Z0-9a-z\-]+\.)+[A-Za-z]{2,4}\z/ }
validates :message,
:length => { :minimum => 10, :maximum => 1000 }
def initialize(attributes = {})
attributes.each do |name, value|
send("#{name}=", value)
end
end
def deliver
return false unless valid?
mail(
:to => "XXXXXXXX@gmail.com",
:from => %("#{name}" <#{email}>),
:reply_to => email,
:subject => "Website inquiry",
:body => message,
:html_body => simple_format(message)
)
true
end
def persisted?
false
end
end
一切正常。路由很好,验证工作正常,但我得到的唯一错误是:undefined method mail for #<Contactus:0x007f9da67173e8>
我尝试使用名称Contactus和用户模型代码制作邮件,但我得到了
以下错误:private method new used
如何在ActiveModel中使用ActionMailer功能?
答案 0 :(得分:2)
要更详细地了解如何设置邮件程序,请运行此命令以生成邮件程序:
rails generate mailer ContactMailer
将以下内容添加到名为app/mailers/contact_mailer
class ContactMailer < ActionMailer::Base
default from: #{from_email}
def contact_mail(contact)
@contact = contact
mail(to: #{email}, subject: #{Whatever your subject would be})
end
end
ActionMailer使用视图呈现其消息的布局。我查看了documentation,但我在这里使用的html_body
选项中找不到任何内容。也许尝试删除它并使用body: simple_format(message)
或只创建模板app/views/mailers/contact_mailer/contact_mail.html.erb
并将消息放入自己。你可以看到我故意将@contact
作为一个实例变量,所以如果我要创建这样一个模板,我就可以访问该对象的所有可用属性,所以如果你想要的话你可以进一步自定义
另一方面......
我有点担心您在这里将new
操作转发给index
操作。你是否有充分的理由改变RESTful方法? 10次中有9次,当我遇到private method called
或其他一些神秘错误的奇怪问题时,就是在我试图欺骗系统的时候。如果您重新分配new
操作以创建新的Contactus
对象,那是否可以解决您的问题?
SMTP设置更新
我的雇主对这些设置的标准可能不是最好的,但这是我到目前为止所做的。在我的environments/production.rb
config.action_mailer.raise_delivery_errors = false
config.action_mailer.perform_deliveries = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:hash => 'of',
:mail => 'client',
:smtp => 'settings'
}
在我的environments/development.rb
我复制了相同的块,但用
config.action_mailer.raise_delivery_errors = true
在我的environments/test.rb
中,我没有添加上述内容。相反,我添加了这一行
config.action_mailer.delivery_method = :test
但那是因为我喜欢测试电子邮件是否在我的RSpec测试中发送。
我不确定您environment.rb
中的配置是什么样的,但您可能希望确保通过ActionMailer进行配置。当然,在进行这些更改后重新启动应用程序,看看是否仍然存在身份验证问题。
针对特定身份验证问题
我的个人SMTP设置通过Gmail进行身份验证,因此我在这些文件中的设置包括以下对:
:address => 'smtp.gmail.com',
:port => #{port_number},
:domain => #{our_email_domain},
:authentication => 'plain',
:enable_starttls_auto => true
尝试查找port
和domain
。如果您没有为拥有自己域名的商家执行此操作,那么Google搜索就足够了。如果您的密码没有被正确解释,authentication
和smarttls
设置应该会有所帮助。
答案 1 :(得分:1)
您必须app/mailers
ActionMailer::Base
继承自mail
。在该课程中,您可以调用mail
方法。您无法直接在ContactUs
课程中致电ContactUs
。
设置好邮件程序后,可以在ContactMailer.contact_mail(self).deliver
:
{{1}}