• You can try disabling database mail and then re-enabling it, that sometimes works:

    EXEC sp_configure 'Database Mail XPs', 0

    GO

    RECONFIGURE

    GO

    EXEC sp_configure 'Database Mail XPs', 1

    GO

    RECONFIGURE

    GO

    Sue