ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => ???,
:user_name => ???,
:password => ???,
:authentication => "plain",
:enable_starttls_auto => true
}
我正在尝试在 Rails 中使用Action Mailer向用户发送电子邮件。我不太明白应该进入:domain
,:user_name
和:password
. 应该是gmail.com
,我的 Gmail 用户名和我的 Gmail 密码吗?