Hi there, I've found this to work quite fast...
ActionMailer::Base.delivery_method = :sendmail
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.default_charset = "utf-8"
Connecting to smtp was too slow for my tastes....
Cheers,
~William
But I understand from what I have read that spam filters will stop mail being received so some suggest adding this
ActionMailer::Base.sendmail_settings = {
:location => '/usr/sbin/sendmail',
:arguments => '-i -t -f support@yourapp.com'
}
Please advise
thank you
Russell