Rails 2.3.4 中的 SMTP 设置
我已经从rails 3.0迁移到rails 2.3.4。所以目前这个版本是新手。我想为我的rails 2.3.4应用程序设置SMTP设置,但无法找到要创建或使用的文件,就像在rails 3.0中一样。 Mailchimp 已被用作第三方电子邮件提供商来发送批量消息。
I have moved from rails 3.0 to rails 2.3.4.So a newbie currently for this version.I want to set the SMTP settings for my rails 2.3.4 application but unable to find which file to create or use like as in rails 3.0.Mailchimp has been used as a 3rd party email provider to send bulk messages.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
开发环境配置:config/environments/development.rb
这是通过 Google 帐户发送邮件的典型配置。
Config for dev environment: config/environments/development.rb
Here is a typical configuration that sends mail via Google Account.
通常在 Rails 2 中,您将这些设置放在 config/environments/*.rb 中。因为您的开发设置将与生产等不同,
所以类似:
在 config/environments/development.rb 的配置块中
Usually in Rails 2 you put those settings in config/environments/*.rb. Because your development settings will be different from production, etc etc.
So something like:
in the configure block in config/environments/development.rb