Functions/PoShMon.Notifications.O365Teams/New-O365TeamsRepairMessageSubject.ps1
Function New-O365TeamsRepairMessageSubject { [CmdletBinding()] Param( [hashtable]$PoShMonConfiguration, [object[]]$RepairOutputValues ) return "[PoShMon $($PoShMonConfiguration.General.EnvironmentName) Repair Results]`r`n" } |