正如标题所说,是否可以在不使用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
我做错了什么?