Categories
Archive
![]() Blogroll
|
Appending signature to emails on Exchange Server 2010 with Powershell
Posted in Exchange Server, Windows Powershell | No Comment | 2,476 views | 14/11/2009 00:36
With a new feature of Exchange Server 2010, now you can append signature or disclaimer messages to emails. You should create a new Transport rule to do this. Also there is an easy way to do this with Powershell: New-TransportRule -Name 'Signatures' -Comments 'Signatures for Inside Organization' -Priority '0' -Enabled $true -FromScope 'InOrganization' -ApplyHtmlDisclaimerLocation 'Append' -ApplyHtmlDisclaimerText '</br></br> <div style="font-size:11pt; font-family: ''Calibri'',sans-serif;"> <div><img alt="yusufozturk" src="http://www.yusufozturk.info/logo.png"></br> </br></div> %%displayname%% </br> MCSE+S </br></div>' -ApplyHtmlDisclaimerFallbackAction 'Wrap' I used %%displayname%% to add my name.
Tags: add signature to all emails with powershell, append disclaimer message exchange server 2010, create disclamer message on exchange 2010 with powershell, create signature with Powershell, exchange server 2010 powershell
Leave a Reply
|