Is there any way within NPM to add a string to all emails that are already defined? Or am I looking at some mucking around with SQL?
Almost none of the hundreds of existing emails we have set up tell the recipient what event is actually causing the email to be sent. I'd like to add that to every email.
I'm not so good with SQL, but if it comes to that, would be something along the lines of
update [Solarwinds].[dbo].[ActionsProperties]set PropertyValue = PropertyValue + 'email sent by alert named: ${N=Alerting;M=AlertName}'where PropertyName = 'emailmessage' and PropertyValue not like '%${N=Alerting;M=AlertName}%'?