作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试设置 Action Mailer 以在我的开发环境中为 Devise 发送重置密码电子邮件。我在启动本地服务器时收到以下错误:未定义的本地变量或方法“smtp”,指的是我的代码中的“地址:“smtp.gmail.com”行。这是我在 development.rb 文件中添加的 Action Mailer 代码:
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: “smtp.gmail.com”,
port: 587,
domain: ENV["GMAIL_DOMAIN"],
authentication: “plain”,
enable_starttls_auto: true,
user_name: ENV["GMAIL_USERNAME"],
password: ENV["GMAIL_PASSWORD"]
}
最佳答案
这是因为您使用了智能引号,“ ”
而不是 " "
,可能来自复制/粘贴。用标准引号替换这些:
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: "smtp.gmail.com",
port: 587,
domain: ENV["GMAIL_DOMAIN"],
authentication: "plain",
enable_starttls_auto: true,
user_name: ENV["GMAIL_USERNAME"],
password: ENV["GMAIL_PASSWORD"]
}
关于ruby-on-rails - 操作邮件程序名称错误 : Undefined local variable or method `“smtp' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25511478/
我是一名优秀的程序员,十分优秀!