function SmtpTransport::getFullResponse
2 calls to SmtpTransport::getFullResponse()
- SmtpTransport::executeCommand in vendor/
symfony/ mailer/ Transport/ Smtp/ SmtpTransport.php - Runs a command against the stream, expecting the given response codes.
- SmtpTransport::start in vendor/
symfony/ mailer/ Transport/ Smtp/ SmtpTransport.php
File
-
vendor/
symfony/ mailer/ Transport/ Smtp/ SmtpTransport.php, line 346
Class
- SmtpTransport
- Sends emails over SMTP.
Namespace
Symfony\Component\Mailer\Transport\SmtpCode
private function getFullResponse() : string {
$response = '';
do {
$line = $this->stream
->readLine();
$response .= $line;
} while ($line && isset($line[3]) && ' ' !== $line[3]);
return $response;
}