locked
Signature in Office 365 using Transport Rule Using C# with Power shell commands RRS feed

  • Question

  • I am creating Transport Rule for Signature in Office 365 in my asp.net site. I am using Power shell command with c#.  For new emails it is working as expected. But whenever I got  reply or forward the email the signature was appended at last of each email. How to restrict signature for those reply and forward emails. Here is the sample code.

       
     var pipe1 = psRunSpace.CreatePipeline();
                                   Command NewAddressList1 = new Command("New-TransportRule");
                                   NewAddressList1.Parameters.Add((new CommandParameter("name", "MyRule")));
                                    NewAddressList1.Parameters.Add((new CommandParameter("Enabled ", true)));
                                   NewAddressList1.Parameters.Add((new CommandParameter("ApplyHtmlDisclaimerLocation", "Append")));
                                  NewAddressList.Parameters.Add((new CommandParameter("Priority",0)));
              NewAddressList1.Parameters.Add((new CommandParameter("ApplyHtmlDisclaimerText", "Hear i using Html String")));
                                   pipe1.Commands.Add(NewAddressList1);
                                   Collection<PSObject> NewAddressListResult1 = pipe1.Invoke();
                                   pipe1.Dispose();

    Monday, June 6, 2016 5:32 AM

Answers

  • They'll help you over here.

    http://forums.asp.net/37.aspx/1?C+

     

     



    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows Server] Datacenter Management

    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees, and confers no rights.

    • Proposed as answer by Just Karl Monday, June 6, 2016 1:50 PM
    • Marked as answer by Just Karl Tuesday, June 14, 2016 5:25 PM
    Monday, June 6, 2016 11:53 AM