diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Mail/Transport/LogTransport.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mail/Transport/LogTransport.php b/src/Mail/Transport/LogTransport.php index 6e351302..632a6bc0 100644 --- a/src/Mail/Transport/LogTransport.php +++ b/src/Mail/Transport/LogTransport.php @@ -31,11 +31,11 @@ class LogTransport extends Transport &$failedRecipients = null ): int { $this->logger->debug( - 'Mail: Send mail "{title}" to "{recipients}":' . PHP_EOL . '{content}', + 'Mail: Send mail "{title}" to "{recipients}":' . PHP_EOL . PHP_EOL . '{content}', [ 'title' => $message->getSubject(), 'recipients' => $this->getTo($message), - 'content' => (string)$message->getHeaders() . PHP_EOL . PHP_EOL . $message->toString(), + 'content' => $message->toString(), ] ); |