當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Swift_Transport_SmtpAgent類代碼示例

本文整理匯總了PHP中Swift_Transport_SmtpAgent的典型用法代碼示例。如果您正苦於以下問題:PHP Swift_Transport_SmtpAgent類的具體用法?PHP Swift_Transport_SmtpAgent怎麽用?PHP Swift_Transport_SmtpAgent使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Swift_Transport_SmtpAgent類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: authenticate

 /**
  * Try to authenticate the user with $email and $token.
  *
  * @param Swift_Transport_SmtpAgent $agent
  * @param string                    $email
  * @param string                    $token
  *
  * @return bool
  */
 public function authenticate(Swift_Transport_SmtpAgent $agent, $email, $token)
 {
     try {
         $param = $this->constructXOAuth2Params($email, $token);
         $agent->executeCommand("AUTH XOAUTH2 " . $param . "\r\n", array(235));
         return true;
     } catch (Swift_TransportException $e) {
         $agent->executeCommand("RSET\r\n", array(250));
         return false;
     }
 }
開發者ID:gpis88ce,項目名稱:Gpis88ce,代碼行數:20,代碼來源:XOAuth2Authenticator.php

示例2: authenticate

 /**
  * Try to authenticate the user with $username and $password.
  * @param Swift_Transport_SmtpAgent $agent
  * @param string $username
  * @param string $password
  * @return boolean
  */
 public function authenticate(Swift_Transport_SmtpAgent $agent, $username, $password)
 {
     try {
         $message = base64_encode($username . chr(0) . $username . chr(0) . $password);
         $agent->executeCommand(sprintf("AUTH PLAIN %s\r\n", $message), array(235));
         return true;
     } catch (Swift_TransportException $e) {
         $agent->executeCommand("RSET\r\n", array(250));
         return false;
     }
 }
開發者ID:codigoirreverente,項目名稱:LampCMS,代碼行數:18,代碼來源:PlainAuthenticator.php

示例3: authenticate

 /**
  * Try to authenticate the user with $username and $password.
  * @param Swift_Transport_SmtpAgent $agent
  * @param string $username
  * @param string $password
  * @return boolean
  */
 public function authenticate(Swift_Transport_SmtpAgent $agent, $username, $password)
 {
     try {
         $agent->executeCommand("AUTH LOGIN\r\n", array(334));
         $agent->executeCommand(sprintf("%s\r\n", base64_encode($username)), array(334));
         $agent->executeCommand(sprintf("%s\r\n", base64_encode($password)), array(235));
         return true;
     } catch (Swift_TransportException $e) {
         $agent->executeCommand("RSET\r\n", array(250));
         return false;
     }
 }
開發者ID:rodolfobais,項目名稱:proylectura,代碼行數:19,代碼來源:LoginAuthenticator.php

示例4: authenticate

 /**
  * Try to authenticate the user with $username and $password.
  *
  * @param Swift_Transport_SmtpAgent $agent
  * @param string                    $username
  * @param string                    $password
  *
  * @return boolean
  */
 public function authenticate(Swift_Transport_SmtpAgent $agent, $username, $password)
 {
     try {
         $challenge = $agent->executeCommand("AUTH CRAM-MD5\r\n", array(334));
         $challenge = base64_decode(substr($challenge, 4));
         $message = base64_encode($username . ' ' . $this->_getResponse($password, $challenge));
         $agent->executeCommand(sprintf("%s\r\n", $message), array(235));
         return true;
     } catch (Swift_TransportException $e) {
         $agent->executeCommand("RSET\r\n", array(250));
         return false;
     }
 }
開發者ID:laiello,項目名稱:yii-mail-fix,代碼行數:22,代碼來源:CramMd5Authenticator.php

示例5: sendMessage3

 /**
  * Send our final message with all our data
  *
  * @param string $response Message 1 response (message 2)
  * @param string $username
  * @param string $password
  * @param string $timestamp
  * @param string $client
  * @param Swift_Transport_SmtpAgent $agent
  * @param bool $v2 Use version2 of the protocol
  * @return string
  */
 protected function sendMessage3($response, $username, $password, $timestamp, $client, Swift_Transport_SmtpAgent $agent, $v2 = true)
 {
     list($domain, $username) = $this->getDomainAndUsername($username);
     //$challenge, $context, $targetInfoH, $targetName, $domainName, $workstation, $DNSDomainName, $DNSServerName, $blob, $ter
     list($challenge, , , , , $workstation, , , $blob) = $this->parseMessage2($response);
     if (!$v2) {
         // LMv1
         $lmResponse = $this->createLMPassword($password, $challenge);
         // NTLMv1
         $ntlmResponse = $this->createNTLMPassword($password, $challenge);
     } else {
         // LMv2
         $lmResponse = $this->createLMv2Password($password, $username, $domain, $challenge, $client);
         // NTLMv2
         $ntlmResponse = $this->createNTLMv2Hash($password, $username, $domain, $challenge, $blob, $timestamp, $client);
     }
     $message = $this->createMessage3($domain, $username, $workstation, $lmResponse, $ntlmResponse);
     return $agent->executeCommand(sprintf("%s\r\n", base64_encode($message)), array(235));
 }
開發者ID:ChrisHursty,項目名稱:bestretail,代碼行數:31,代碼來源:NTLMAuthenticator.php


注:本文中的Swift_Transport_SmtpAgent類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。