1

我安装了设计。

我运行 rails server -e development 并在 config/environments 中设置这一行:

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

设计 说:

 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 回答