최초 발송일시
{format(new Date(new Date(data.emailSentAt).getTime() + 9 * 60 * 60 * 1000), "yyyy-MM-dd HH:mm", { locale: ko })}
{data.lastEmailSentAt && data.emailResentCount > 1 && (
최근 재발송일시
{format(new Date(new Date(data.lastEmailSentAt).getTime() + 9 * 60 * 60 * 1000), "yyyy-MM-dd HH:mm", { locale: ko })}
재발송 {data.emailResentCount - 1}회
)}
{emailRecipients.to.length > 0 && (
수신자
{emailRecipients.to.join(", ")}
)}
{emailRecipients.cc.length > 0 && (
참조
{emailRecipients.cc.join(", ")}
)}
{emailRecipients.sentBy && (
발신자
{emailRecipients.sentBy}
)}
발송 상태
{data.emailStatus === "failed" ? "발송 실패" : "발송 완료"}