@await Component.InvokeAsync(typeof(AdminWidgetViewComponent), new { widgetZone = AdminWidgetZones.QueuedEmailDetailsTop, additionalData = Model })
@if (!string.IsNullOrEmpty(Model.AttachmentFilePath))
{
}
@if (Model.AttachedDownloadId > 0)
{
}
@await Component.InvokeAsync(typeof(AdminWidgetViewComponent), new { widgetZone = AdminWidgetZones.QueuedEmailDetailsBottom, additionalData = Model })
@Model.PriorityName
@Model.AttachmentFilePath
@{
//Static file attachments do not support URLs yet
//A store owner have to upload a file
//we store a value into "ViewData" and then use it in the Download.cshtml file
ViewData["nop.DownloadEditor.DisableUrl"] = true;
}
@Model.CreatedOn
@if (Model.SentOn.HasValue)
{
@Model.SentOn
}
else
{
@T("Admin.System.QueuedEmails.Fields.SentOn.NotSent")
}
@Model.EmailAccountName