Exception notifier not working

You’ll have to tell ActionMailer how to send the email still. http://wiki.rubyonrails.com/rails/pages/HowToSendEmailsWithActionMailer

That should clear everything up. Well, once you get ActionMailer up and working.

RSL

Does your config/environment.rb contain a section similar to the following?

Error reports for your site will be sent to all email addresses in the %w{} array.

ExceptionNotifier.exception

_recipients = %w(

user@domain.com)

Sender address should be different from all recipient since some mail servers

have problems when both are the same. Spam-guard related I’m sure.

ExceptionNotifier.sender_address = %w( other-user@domain.com)

Note that the sender and recipients should be different addresses. This may [or may not] be part of the problem too. Hope this helps.

RSL

I think the problem is that space between “Application Error” and the email address. the %w method sees two entries there, the first of which is not a valid email address and might be causing further failures. You might try

ExceptionNotifier.sender_address = [“Application Error anotheruser@cdmplus.com”]

or just leaving out that “Application Error” part. The email’s subject makes it clear that it’s an error. Lemme know if that works.

RSL