正如标题所说,是否可以在不使用 SMTP 的情况下发送邮件?我已经通过设置 SMTP 让它工作了,但是我需要一个可以发送的帐户,并且我希望能够从它自己的网站发送邮件。
我遵循了本指南: http: //guides.rubyonrails.org/action_mailer_basics.html
但它不会发送任何东西,我得到这个错误:
Connection refused - connect(2)
这是我的代码:
user_mailer.rb
class UserMailer < ActionMailer::Base
default from: "noreply@example.se"
def invitation_mail(user)
mail(:to => "user@example.com", :subject => "Admin registration - vanadismilano.com")
end
end
我究竟做错了什么?