summaryrefslogtreecommitdiff
path: root/src/Mail/Transport/LogTransport.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mail/Transport/LogTransport.php')
-rw-r--r--src/Mail/Transport/LogTransport.php4
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(),
]
);