Это учебный проект
Уже второй день пытаюсь отправить письмо из rails со ссылкой на восстановление пароля.
В консоли высвечивается что отправилось, а на самой почте ничего:
Вот мои настройки:
development.rb
config.action_mailer.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
ActionMailer::Base.smtp_settings = {
:address => 'smtp.sendgrid.net',
:port => 465,
:authentication => :plain,
:user_name => 'example@gmail.com',
:password => 'мой пароль',
:domain => 'localhost:3000',
:enable_starttls_auto => true
}
config.action_mailer.default_url_options = { host: 'http://localhost:3000' }
config.action_mailer.asset_host = 'http://localhost:3000'