使用siteground邮件ID时,电子邮件不会从rails app发送

时间:2014-10-29 06:02:09

标签: ruby-on-rails ruby email ruby-on-rails-4 ruby-2.0

我正在使用Ruby 2和Rails 4.我正在尝试从我的应用程序发送邮件。当我使用gmail帐户时它很好用但是当我使用Site Ground帐户时它不起作用。我在网站中有一个电子邮件帐户(http://www.siteground.com/)。

我创建了一个名为email.yml的文件,并编写了一些代码:

email.yml:

development:
  :address: smtp.mydomain.com
  :port: 25
  :Domain: mail.mydomain.com
  :authentication: plain
  :user_name: email address of siteground
  :password: password
  :enable_starttls_auto: true

production:
      :address: smtp.mydomain.com
      :port: 25
      :Domain: mail.mydomain.com
      :authentication: plain
      :user_name: email address
      :password: password
      :enable_starttls_auto: true

在config / environment / development

我添加了

config.action_mailer.default_url_options = { :host => 'http://localhost:3000/' }
config.action_mailer.delivery_method = :smtp

如果有人对此有任何想法,请帮助我。

0 个答案:

没有答案