1

deviseをインストールしました。

Railsサーバー-e開発を実行し、次の行をconfig/environmentsに設定します。

config.action_mailer.default_url_options = {:host => 'localhost:3000'}

Devisesは言う:

 message with a confirmation link has been sent to your email address. Please open the      link to activate your account.

しかし、私はメールを受け取りませんでした。

どう思いますか?

4

1 に答える 1

3

development.rbこれらの行をファイルに追加します

config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
  :address              => "smtp.gmail.com",
  :port                 => 587,
  :domain               => 'baci.lindsaar.net',
  :user_name            => '<username>',
  :password             => '<password>',
  :authentication       => 'plain',
  :enable_starttls_auto => true  }

メールの送信と設定に関する詳細はこちら

于 2013-02-18T17:59:42.680 に答える