mirror of
https://github.com/kingomarnajjar/curly-happiness.git
synced 2026-07-26 06:37:18 +10:00
15 lines
384 B
Ruby
15 lines
384 B
Ruby
# Load the Rails application.
|
|
require_relative 'application'
|
|
|
|
# Initialize the Rails application.
|
|
Rails.application.initialize!
|
|
|
|
ActionMailer::Base.smtp_settings = {
|
|
:user_name => "najomar68@gmail.com",
|
|
:password => "sendgridpass123",
|
|
:domain => 'localhost:3000',
|
|
:address => 'smtp.sendgrid.net',
|
|
:port => 587,
|
|
:authentication => :plain,
|
|
:enable_starttls_auto => true
|
|
}
|