当前位置: 首页>>代码示例>>PHP>>正文


PHP Swift_Transport_SmtpAgent::executeCommand方法代码示例

本文整理汇总了PHP中Swift_Transport_SmtpAgent::executeCommand方法的典型用法代码示例。如果您正苦于以下问题:PHP Swift_Transport_SmtpAgent::executeCommand方法的具体用法?PHP Swift_Transport_SmtpAgent::executeCommand怎么用?PHP Swift_Transport_SmtpAgent::executeCommand使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Swift_Transport_SmtpAgent的用法示例。


在下文中一共展示了Swift_Transport_SmtpAgent::executeCommand方法的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::executeCommand方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。