The following document contains conversations between:

{{$conversations[0]['toName']}}

{{$email}}

And

{{$conversations[0]['fromName']}}

{{$originEmail}}

* The following conversations are in order from newest to oldest

Email Conversations

@foreach ($conversations as $index => $conversation)
Message Number: {{ sprintf('%02d', $index + 1) }}
Date: {{ $conversation['date'] }} | Time: {{ $conversation['time'] }}
{{ $conversation['fromName'] }} Writes To >> {{ $conversation['toName'] }}
Subject: {{ $conversation['subject'] }}

{{ $conversation['body'] }}

@endforeach