Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. SocketStream.php

function SocketStream::startTLS

File

vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php, line 168

Class

SocketStream
A stream supporting remote sockets.

Namespace

Symfony\Component\Mailer\Transport\Smtp\Stream

Code

public function startTLS() : bool {
    set_error_handler(function ($type, $msg) {
        throw new TransportException('Unable to connect with STARTTLS: ' . $msg);
    });
    try {
        return stream_socket_enable_crypto($this->stream, true);
    } finally {
        restore_error_handler();
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal