Tag: 联系表

在Rails中联系Form Mailer 4

我正在尝试在Rails 4中构建一个联系表单,其中表单采用名称,电子邮件和正文,并将其发送到我的电子邮件地址。 点击“提交”后,该应用会正确地重定向回联系人页面,但似乎没有电子邮件发送。 的routes.rb match ‘/send_mail’, to: ‘contact#send_mail’, via: ‘post’ contact_email.html.erb true %> true %> You have received the following email from contact_controller.rb def send_mail name = params[:name] email = params[:email] body = params[:comments] ContactMailer.contact_email(name, email, body).deliver redirect_to contact_path, notice: ‘Message sent’ end contact_mailer.rb class ContactMailer < ActionMailer::Base default to: # my email address def […]