Я пытаюсь получить сообщения электронной почты, отправляемые через Gmail из моего приложения Ruby on Rails, с Ben
.
В настоящее время, когда письмо поступает в (отдельную, не связанную) учетную запись Gmail,в папке «Входящие» он имеет ben
в разделе «из».
Вот мои настройки:
setup_mail.rb
# my domain is my_example.com, and the email address I am sending from is ben@my_example.com
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => "my_example.com",
:user_name => "ben@my_example.com",
:password => "my_password",
:authentication => "plain",
:enable_starttls_auto => true
}
if Rails.env.development?
ActionMailer::Base.default_url_options[:host] = "localhost:3000"
else
ActionMailer::Base.default_url_options[:host] = "my_example.com"
end
report_mailer.rb
def send_notification_email(notification_details)
subject = "testing_email"
mail(:to => notification_details[:email], :subject => subject, :from => "Ben")
end
А вот настройки электронной почты в Gmail: