Forum Discussion
John1055
Dec 23, 2024Copper Contributor
email signature global.
Hello Please i need your help on this issue. when I am trying to set up global email signature from exchange rule , not working properly.
- Dec 26, 2024
# Check existing transport rules
Get-TransportRule | Where-Object {$_.SignatureTemplate -ne $null}# Create new transport rule
New-TransportRule -Name "Global Signature" `
-ApplyHtmlDisclaimerText "<p>Your signature HTML here</p>" `
-ApplyHtmlDisclaimerLocation "Append" `
-ApplyToRecipients "*@*"
Don_Vlogeer
Jan 03, 2025Brass Contributor
Perhaps you can recreate the transport rule and validate if it working properly. I rather test on a small portion of user before rolling out globally.