我已经从 rails 3.0 迁移到 rails 2.3.4。所以目前是这个版本的新手。我想为我的 rails 2.3.4 应用程序设置 SMTP 设置,但无法像 rails 3.0 一样找到要创建或使用的文件。 Mailchimp 已被用作第三方电子邮件提供商来发送批量消息。
问问题
1446 次
2 回答
3
开发环境的配置:config/environments/development.rb
这是通过 Google 帐户发送邮件的典型配置。
config.action_mailer.perform_deliveries = false # Set it to true to send the email in dev mode
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.default_url_options = { :host => "localhost:3000" }
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:authentication => :plain,
:user_name => "user@gmail.com",
:password => "password"
}
于 2011-06-27T12:38:32.690 回答
1
通常在 Rails 2 中,您将这些设置放在 config/environments/*.rb 中。因为您的开发设置将与生产等不同。
所以像:
config.action_mailer.smtp_settings = {
:address => "localhost",
:port => 2525
}
在 config/environments/development.rb 的配置块中
于 2011-06-27T12:34:02.910 回答