@{ ViewData["Title"] = "Email Preferences Updated"; Layout = null; // Standalone page — no sidebar, no nav var alreadyDone = (bool)(ViewBag.AlreadyUnsubscribed ?? false); var name = (string?)ViewBag.CustomerName; } @ViewData["Title"]

@(alreadyDone ? "Already Unsubscribed" : "You've Been Unsubscribed")

@if (!string.IsNullOrWhiteSpace(name)) {

Hi @name,

} @if (alreadyDone) {

Your email address is already opted out of notifications. No further action is needed.

} else {

You've been successfully removed from our email notification list. You will no longer receive job status updates or quote notifications by email.

If you change your mind, contact us and we'll re-enable email notifications for you.

}