IAdmExchangeMailContactParameters

The IAdmExchangeMailContactParameters interface represents Exchange properties of a mail-enabled contact or user.

Inheritance: IAdmExchangeMailParameters

To modify Exchange properties of a mail-enabled contact or user, you need to create a new instance of the IAdmExchangeMailContactParameters interface. To do this, you need to call the default constructor of the AdmExchangeMailContactParameters class that implements the interface.

 How
PowerShell
[Reflection.Assembly]::LoadWithPartialName("Softerra.Adaxes.Adsi")

$mailContactParams = New-Object "Softerra.Adaxes.Adsi.Exchange.AdmExchangeMailContactParameters"
C#
using Softerra.Adaxes.Interop.Adsi;
using Softerra.Adaxes.Adsi;
using Softerra.Adaxes.Interop.Adsi.Exchange;
using Softerra.Adaxes.Interop.Adsi.PersistentObjects;
class Program
{
    static void Main(string[] args)
    {
        AdmExchangeMailContactParameters mailContactParams =
            new AdmExchangeMailContactParameters();
    }
}

Properties

Details

ExternalEmailAddress

Gets or sets an email address outside the organization. Email messages sent to the mail-enabled contact or user are sent to this external address.


ExternalEmailAddressModificationEnabled

Gets or sets a value indicating whether the ExternalEmailAddress property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

UseMapiRichTextFormat

Gets or sets a value indicating how to handle messages in the MAPI rich text format (RTF).


UseMapiRichTextFormatModificationEnabled

Gets or sets a value indicating whether the UseMapiRichTextFormatUseMapiRichTextFormat`{.language-powershell} property will be modified.

  • Type:
  • bool
  • Access:
  • Read/Write

Requirements

Minimum required version: 2013.1

See also