Functions/PoShMon.Notifications.Pushbullet/New-PushbulletExceptionSubject.ps1
Function New-PushbulletExceptionSubject { [CmdletBinding()] Param( [hashtable]$PoShMonConfiguration, [ValidateSet("Monitoring", "Repairing")] [string]$Action = "Monitoring" ) return "[PoshMon $($PoShMonConfiguration.General.EnvironmentName) $Action]`r`n" } |