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

Breadcrumb

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

function SmtpTransport::doRcptToCommand

1 call to SmtpTransport::doRcptToCommand()
SmtpTransport::doSend in vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php

File

vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php, line 266

Class

SmtpTransport
Sends emails over SMTP.

Namespace

Symfony\Component\Mailer\Transport\Smtp

Code

private function doRcptToCommand(string $address) : void {
    $this->executeCommand(\sprintf("RCPT TO:<%s>\r\n", $address), [
        250,
        251,
        252,
    ]);
}
RSS feed
Powered by Drupal