Skip to content

Commit

Permalink
Fix minor corrections.
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Oct 9, 2023
1 parent 25097dd commit 2b7e844
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/panels/MailPanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ private function addMoreInformation(MessageInterface $message, array &$messageDa

private function addMoreInformationFromSymfonyMailer(MessageInterface $message, array &$messageData): void
{
if (!$message instanceof \yii\symfonymailer\Message) {
return;

Check warning on line 139 in src/panels/MailPanel.php

View check run for this annotation

Codecov / codecov/patch

src/panels/MailPanel.php#L138-L139

Added lines #L138 - L139 were not covered by tests
}

$symfonyMessage = $message->getSymfonyEmail();
$part = $symfonyMessage->getBody();

Expand Down

0 comments on commit 2b7e844

Please sign in to comment.