@extends('layouts.admin.layout') @section('content')

Mail Delivered Details

Email {{ $mailqueue->email->subject }}
Subscriber {{ $mailqueue->subscriber->email }}
Mailing list {{ $mailqueue->mailinglist->name }}
Campaign {{ $mailqueue->campaign->name }}
Subject {{ $mailqueue->subject }}
From Email {{ $mailqueue->from_email }}
From Name {{ $mailqueue->from_name }}
Reply To Email {{ $mailqueue->reply_to_email }}
To Mail {{ $mailqueue->to_mail }}
Content {{ $mailqueue->content }}
Scheduled At {{ $mailqueue->scheduled_at }}
Fired At {{ $mailqueue->fired_at }}
Failed At @if ($mailqueue->failed_at == null) -- @else {{ $mailqueue->failed_at }} @endif
Exception @if ($mailqueue->exception == null) -- @else {{ $mailqueue->exception }} @endif
Read @if ($mailqueue->is_read == 1) @else @endif
@endsection