我正在使用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
如果有人对此有任何想法,请帮助我。