@page "{id:int}" @model Admin.Pages.Forum.Board.Meta.NotifyModel @using Domain.Entities.Forum.ValueObject @{ ViewData["Title"] = "게시판 관리 - 알림"; ViewData["Sector"] = "Notify"; ViewData["BoardID"] = Model.BoardID; ViewData["BoardList"] = Model.BoardList; ViewData["QueryString"] = Model.QueryString; var notifyList = Model.NotifyList; }
이메일 알림

이메일 알림이 양식에 맞추어 아래 대상자에게 발송됩니다.

@if (notifyList is not null) { @foreach (var item in notifyList) { var notifyValue = (BoardNotify)Enum.Parse(typeof(BoardNotify), item.Value);
} }
@if (notifyList is not null) { @foreach (var item in notifyList) { var notifyValue = (BoardNotify)Enum.Parse(typeof(BoardNotify), item.Value);
} }
@if (notifyList is not null) { @foreach (var item in notifyList) { var notifyValue = (BoardNotify)Enum.Parse(typeof(BoardNotify), item.Value);
} }

취소
@section Scripts { }