I configured my SQL Server 2014 database to back up to an Azure storage account. I also enabled email notifications via
EXEC msdb.smart_admin.sp_set_parameter
@parameter_name = 'SSMBackup2WANotificationEmailIds',
@parameter_value = 'd.hilgarth@fire-development.com'
However, this is sending me an email every 15 minutes which tells me that everything is ok. I only want to get an email if there is a problem.
Question: What do I need to change to only get emails in case of an error?
BTW: I have a server that I configured some time ago with the same script that behaves the way I want, so I know it is possible. But because I used the same script as back then, I don't know the difference in the configuration and know of no way to figure it out.