Forum Discussion

John1055's avatar
John1055
Copper Contributor
Dec 23, 2024
Solved

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.
  • kyazaferr's avatar
    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 "*@*"

Resources