我使用以下帖子创建了我的邮件联系方式:link
关于gmail的帖子。我来自德国,我只能使用googlemail.com。所以我改变了从gmail到googlemail的所有内容。我没有收到任何错误消息,但在googlemail帐户中没有收到任何邮件。
这是我的邮件配置:
# Mail config
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtp.googlemail.com",
:port => 587,
:user_name => 'khsuite@googlemail.com',
:password => 'mypassword',
:authentication => 'plain',
:enable_starttls_auto => true }
googlemail是否还需要其他设置?