After configuring database mail on one server and sending a test email, I am finding nothing in the queue or the log. The mail id, however, keeps incrementing with each retry. I have checked the following:
- I am sysadmin on the box, so I do have permissions to send mail
EXEC msdb.dbo.sysmail_help_status_sp;
reportsSTARTED
- There are no records in the queue:
SELECT sent_account_id, sent_date FROM msdb.dbo.sysmail_sentitems;
- There are no records in the event log:
SELECT * FROM msdb.dbo.sysmail_event_log;
- Service broker is enabled. This returns "1":
SELECT is_broker_enabled FROM sys.databases WHERE name = 'msdb';
I have configured this successfully on 4 other instances, it's just one that is giving me grief. Any other pointers would be appreciated.