1

Gmail アカウントを使用してメールを配信しようとすると、タイムアウト::エラー (実行期限切れ): が発生します。私のconfig/environments/development.rbには、次のものがあります。

    config.action_mailer.delivery_method = :smtp
    config.action_mailer.perform_deliveries = true
    config.action_mailer.raise_delivery_errors = true
    config.action_mailer.smtp_settings = {
        :address              => "smtp.gmail.com",
        :port                 => 587,
        :domain               => 'mydomain.com',
        :user_name            => 'me@mydomain.com',
        :password             => 'password',
        :authentication       => 'plain',
        :enable_starttls_auto => true  }

これは私を夢中にさせています!

4

1 に答える 1

-1

config.action_mailer.delivery_method = :smtp を config.action_mailer.delivery_method = :sendmail に変更します

于 2013-09-12T12:55:58.550 に答える