@using PowderCoating.Web.Controllers @model AdminEmailPreviewModel @{ ViewData["Title"] = "Preview Admin Email"; }
Step 3 of 3: preview one merged sample, then send sequentially.
| Company | Recipient | Company Admin | Ready |
|---|---|---|---|
|
@row.CompanyName
#@row.CompanyId
|
@row.RecipientName
@(string.IsNullOrWhiteSpace(row.RecipientEmail) ? "No primary contact email configured" : row.RecipientEmail)
|
@(string.IsNullOrWhiteSpace(row.CompanyAdminName) ? "—" : row.CompanyAdminName)
@if (!string.IsNullOrWhiteSpace(row.CompanyAdminEmail))
{
@row.CompanyAdminEmail
}
|
@if (row.CanSend) { Ready } else { @row.SkipReason } |