예제 #1
0
 /**
  * @param string $sLogin
  * @param string $sPassword
  * @param string $sProxyAuthUser = ''
  * @param bool $bUseAuthPlainIfSupported = false
  *
  * @return \MailSo\Mail\MailClient
  *
  * @throws \MailSo\Base\Exceptions\InvalidArgumentException
  * @throws \MailSo\Net\Exceptions\Exception
  * @throws \MailSo\Imap\Exceptions\LoginException
  */
 public function Login($sLogin, $sPassword, $sProxyAuthUser = '', $bUseAuthPlainIfSupported = false)
 {
     $this->oImapClient->Login($sLogin, $sPassword, $sProxyAuthUser, $bUseAuthPlainIfSupported);
     return $this;
 }