我使用此源代码在heroku服务器中发送电子邮件,但它没有:
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: "smtp.gmail.com",
port: 25,
authentication: "plain",
user_name: "support@gmail.com",
password: ENV['PASSWORD'],
enable_starttls_auto: false
}
我的源代码中是否有任何错误。我想用免费的方式在我的项目中发送电子邮件 谢谢