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
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?
ExceptionNotifier.exception
_recipients = %w(
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