/plugin/smtp/subtree/txtthinking/Mailer/tests/ |
H A D | SMTPTest.php | 25 protected $smtp; variable in SMTPTest 34 $this->smtp = new SMTP(); 41 $result = $this->smtp->setServer("localhost", "25", null); 43 $this->assertEquals('25', $this->testHelper->getPropertyValue($this->smtp, 'port')); 44 $this->assertSame($this->smtp, $result); 49 $result = $this->smtp->setAuth('none', 'none'); 53 $this->assertSame($this->smtp, $result); 58 $this->smtp->setServer("localhost", "25", null) 67 $status = $this->smtp->send($message); 77 $this->smtp->setServer("localhost", "99999", null) [all …]
|
H A D | MailerTest.php | 11 protected $smtp; variable in MailerTest 15 $this->smtp = new SMTP(new Logger('SMTP')); 20 $this->smtp 32 $status = $this->smtp->send($this->message);
|
/plugin/smtp/ |
H A D | action.php | 46 $message = new \splitbrain\dokuwiki\plugin\smtp\Message( 53 $logger = new \splitbrain\dokuwiki\plugin\smtp\Logger(); 54 $smtp = new \Tx\Mailer\SMTP($logger); 55 $smtp->setServer( 61 $smtp->setAuth( 66 $smtp->setEhlo( 73 $smtp->send($message);
|
H A D | plugin.info.txt | 1 base smtp 5 name smtp plugin 7 url https://www.dokuwiki.org/plugin:smtp
|
H A D | README | 1 smtp Plugin for DokuWiki 6 https://www.dokuwiki.org/plugin:smtp 9 lib/plugins/smtp/ - if the folder is called different it
|
/plugin/smtp/subtree/txtthinking/Mailer/src/ |
H A D | Mailer.php | 37 protected $smtp; variable in Tx\\Mailer 49 $this->smtp = new SMTP($logger); 61 $this->smtp->setServer($host, $port, $secure); 72 $this->smtp->setAuth($username, $password); 169 return $this->smtp->send($this->message);
|
/plugin/smtp/subtree/txtthinking/Mailer/ |
H A D | README.md | 19 ->setServer('smtp.ym.163.com', 25) 37 $smtp = new SMTP(); // new SMTP(new Logger('Mailer')); # set logger to receive debug log 38 $smtp->setServer('smtp.ym.163.com', 25) 49 $ok = $smtp->send($message);
|
/plugin/swiftmail/ |
H A D | action.php | 44 $smtp =& new Swift_Connection_SMTP( 53 … $smtp->attachAuthenticator(new Swift_Authenticator_PopB4Smtp($this->getConf('pop3_host'))); 57 if($this->getConf('auth_user')) $smtp->setUsername($this->getConf('auth_user')); 58 if($this->getConf('auth_pass')) $smtp->setPassword($this->getConf('auth_pass')); 61 $swift =& new Swift($smtp,$this->getConf('localdomain'));
|
/plugin/smtp/subtree/txtthinking/Mailer/src/Mailer/ |
H A D | SMTP.php | 32 protected $smtp; variable in Tx\\Mailer\\SMTP 161 return fclose($this->smtp); 174 $this->smtp = @fsockopen($host, $this->port); 177 if (!$this->smtp){ 201 if(!stream_socket_enable_crypto($this->smtp, true, STREAM_CRYPTO_METHOD_TLS_CLIENT)) { 333 fputs($this->smtp, $string, strlen($string)); 345 while ($str = fgets($this->smtp, 515)) {
|
/plugin/swiftmail/Swift/ |
H A D | Address.php | 81 public function build($smtp=false) argument 83 if ($smtp)
|
H A D | Message.php | 201 public function getReturnPath($smtp=false) argument 205 if (!$smtp) return $this->headers->get("Return-Path");
|
/plugin/smtp/_test/ |
H A D | message.test.php | 50 $message = new \splitbrain\dokuwiki\plugin\smtp\Message('', '', $input);
|
/plugin/smtp/classes/ |
H A D | Logger.php | 3 namespace splitbrain\dokuwiki\plugin\smtp;
|
H A D | Message.php | 3 namespace splitbrain\dokuwiki\plugin\smtp;
|
/plugin/elasticsearch/vendor/nyholm/dsn/ |
H A D | README.md | 77 $func = DsnParser::parseFunc('failover(sendgrid://KEY@default smtp://127.0.0.1)'); 109 $func = DsnParser::parseFunc('smtp://127.0.0.1'); 115 $func = DsnParser::parseFunc('dsn(smtp://127.0.0.1)');
|