Skip to content

Commit

Permalink
Sender name can also be null
Browse files Browse the repository at this point in the history
  • Loading branch information
tchapi committed Mar 18, 2022
1 parent 3e85ecc commit f49c20a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugins/DavisIMipPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public function schedule(ITip\Message $itip)
$message = (new TemplatedEmail())
->from(new Address($this->senderEmail, $senderName.' '.static::MESSAGE_ORIGIN_INDICATOR))
->to(new Address($recipientEmail, $recipientName ?? ''))
->replyTo(new Address($senderEmail, $senderName))
->replyTo(new Address($senderEmail, $senderName ?? ''))
->subject($subject);

if (DAV\Server::$exposeVersion) {
Expand Down

0 comments on commit f49c20a

Please sign in to comment.