Skip to content

Commit

Permalink
Show From for emails received from customers with multiple emails - c…
Browse files Browse the repository at this point in the history
…loses #4059
  • Loading branch information
freescout-help-desk committed Jun 6, 2024
1 parent b926cd5 commit c1c713e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion resources/views/conversations/partials/thread.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@
@if ($thread->type != App\Thread::TYPE_NOTE || $thread->isForward())
<div class="thread-recipients">
@action('thread.before_recipients', $thread, $loop, $threads, $conversation, $mailbox)
@if ($thread->isUserMessage() && $thread->from && array_key_exists($thread->from, $mailbox->getAliases()))
@if (($thread->isUserMessage() && $thread->from && array_key_exists($thread->from, $mailbox->getAliases()))
|| ($thread->isCustomerMessage() && count($customer->emails) > 1)
)
<div>
<strong>
{{ __("From") }}:
Expand Down

0 comments on commit c1c713e

Please sign in to comment.