Verify that an email is sent?

Hi all

I'm trying to get my actionmailer to work. I've set the following params in my environment.rb:

  config.action_mailer.smtp_settings = {     :address => "mail.???.ch",     :port => 25,     :domain => "???.ch",     :authentication => :login,     :user_name => "???",     :password => "???"   }   config.action_mailer.default_charset = "utf-8"

So far, everything seems to work, the log is:

Sent mail:

Make sure you have   config.action_mailer.raise_delivery_errors = true in config/environments/development.rb.

Henrik --- wrote: