Skip to content

Commit d06b1a1

Browse files
committed
typo [Closes #85]
1 parent fa85a33 commit d06b1a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Mail/SmtpMailer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ protected function connect(): void
178178
$this->write("EHLO $this->clientHost");
179179
$ehloResponse = $this->read();
180180
if ((int) $ehloResponse !== 250) {
181-
throw new SmtpException('SMTP server did not accept EHLO with error: ' . trim($response));
181+
throw new SmtpException('SMTP server did not accept EHLO with error: ' . trim($ehloResponse));
182182
}
183183

184184
} else {

0 commit comments

Comments
 (0)