Hi,
With the new versions of rails you now have to use the server’s host name as set in SSL certificate rather than using localhost I guess. Just as you have it here:
:address => "localhost",
Make sure to point your ActionMailer settings to use the server’s host name as set in the server’s SSL certificate.
:address => ’server.ssl.name’,
while I cannot assure if this is a quick fix to it, but worth a try
Let me know how you get on it.