如何在Rails上发送电子邮件

时间:2019-01-20 19:26:49

标签: ruby-on-rails digital-ocean

我正在尝试在我的应用程序中添加一个简单的电子邮件表单,以便可以接收来自用户的电子邮件。我遵循了一些教程,最终以开发模式成功向自己发送电子邮件。这是我的方法:

1)我安装了这个gem:'mail_form';

2)生成了一个联系人控制器:

#contacts_controller.rb

class ContactsController < ApplicationController
  def new
    @contact = Contact.new
  end

  def create
    @contact = Contact.new(params[:contact])
    @contact.request = request
    if @contact.deliver
      flash.now[:error] = nil
    else
      flash.now[:error] = 'Não foi possível enviar o email.'
    end
    redirect_back(fallback_location: vehicles_path)
  end
end

3)我(手动)创建了一个联系人模型:

#contact.rb

class Contact < MailForm::Base
  attribute :name,      :validate => true
  attribute :email,     :validate => /\A([\w\.%\+\-]+)@([\w\-]+\.)+([\w]{2,})\z/i
  attribute :subject
  attribute :message, :validate => true
  attribute :nickname,  :captcha  => true

  def headers
    {
      :subject => %("#{subject}"),
      :to => "myEmail@gmail.com",
      :from => %("#{name}" <#{email}>)
    }
  end
end

4)编辑了我的development.rb

config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
  address:              'smtp.gmail.com',
  port:                 587,
  domain:               'gmail.com',
  user_name:            'myusername@gmail.com',
  password:             Rails.application.credentials.email_password,
  authentication:       :plain,
  enable_starttls_auto: true
}

5)我的表格

<%= form_with model:contact do |f| %>
  <div class="field">
    <%= f.label "Name" %>
    <%= f.text_field :name, required: true %>
  </div>

  <div class="field">
    <%= f.label "Email" %>
    <%= f.email_field :email, required: true %>
  </div>

  <div class="field">
    <%= f.label "Subject" %>
    <%= f.text_field :subject, required: true %>
  </div>

  <div class="field">
    <%= f.label "Message" %>
    <%= f.text_area :message, as: :text, rows: 8, required: true %>
  </div>

  <div class="hidden">
    <%= f.email_field :nickname, hint: 'leave this field empty' %>
  </div>

  <div class="actions">
    <%= f.submit "Submit", class: "contact_submit" %>
  </div>
<% end %>

这在开发中效果很好。

但是,现在,我不知道在生产中该做什么。一键式应用程序已经在DigitalOcean中托管了我的应用程序,该应用程序已经安装了Postfix。我不知道我是否真的需要Postfix,或者我是否需要像SendGrid或MailGun这样的服务,或者两者都没有。

因此,总结一下,我想要一些有关我真正需要哪种服务的信息。谢谢!

1 个答案:

答案 0 :(得分:0)

gmail可以正常工作,只需确保为应用程序here is the reference设置了较低的安全性

以下是适用于我的应用程序的设置,可以作为您的参考:

config.action_mailer.default_url_options = { :host => "ip_address_from_digital_ocean" }
config.action_mailer.delivery_method=:smtp 
config.action_mailer.raise_delivery_errors = true
config.action_mailer.default_url_options = { :host => 'host_name' }

# Gmail SMTP server setup
ActionMailer::Base.smtp_settings = {
  :address => "smtp.gmail.com",
  :enable_starttls_auto => true,
  :port => 587,
  :authentication => :plain,
  :user_name => "username@gmail.com",
  :password => password
}