Sha256: 5556c9c86eb1345977dfd55d516f0ad0968bfe70c398644ea4bda1eb99f293dd
Contents?: true
Size: 543 Bytes
Versions: 2
Compression:
Stored size: 543 Bytes
Contents
# This is only one example of configuring ActionMailer, in this case SendGrid. # For more information, read: https://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration Rails.application.configure do config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { address: "smtp.sendgrid.net", port: 587, domain: ENV["SENDGRID_DOMAIN"], user_name: ENV["SENDGRID_USERNAME"], password: ENV["SENDGRID_KEY"], authentication: "plain", enable_starttls_auto: true } end
Version data entries
2 entries across 2 versions & 1 rubygems