@php //echo "
";
	//print_r($EmailConversations);
//echo "
"; use App\Models\InboundEmail; @endphp @if(count($EmailConversations)!=0) @foreach($EmailConversations as $key=> $ec) @if($ec['EmailType']=="Inbound")
Date : {{date('d-M-Y h:i:s',strtotime($ec['CreatedDate']))}}
From : {{$ec['FromAddress']}}
To : {{$ec['ToAddress']}}
CC : {{$ec['CcAddress']}}

{{$ec['EmailSubject']}}

@php echo InboundEmail::ExtractMailBody($ec['DescriptionHtml']); @endphp
@endif @if($ec['EmailType']=="Outbound")
{{date('d-M-Y h:i:s',strtotime($ec['SentDate']))}}
From : {{$ec['FromAddress']}}
To : {{$ec['ToAddress']}}
CC : {{$ec['CcAddress']}}

{{$ec['EmailSubject']}}

@php echo InboundEmail::ExtractMailBody($ec['DescriptionHtml']); @endphp
@endif @endforeach @endif