Example #1
0
 /**
  * Mail enable a contact
  * Allows email to be sent to them through Exchange
  * 
  * @param string $distinguishedname The contact to mail enable
  * @param string $emailaddress The email address to allow emails to be sent through
  * @param string $mailnickname The mailnickname for the contact in Exchange.  If NULL this will be set to the display name
  * @return bool
  */
 public function contactMailEnable($distinguishedName, $emailAddress, $mailNickname = NULL)
 {
     return $this->adldap->exchange()->contactMailEnable($distinguishedName, $emailAddres, $mailNickname);
 }