"""Correspondence notification templates."""

from __future__ import annotations

from simorgh.apps.notifications.templates import NotificationTemplate, register_template

LETTER_CREATED = register_template(
    NotificationTemplate(
        kind="correspondence.letter.created",
        title_key="correspondence.notifications.letter_created.title",
        body_key="correspondence.notifications.letter_created.body",
        default_channels=("inbox",),
    )
)

LETTER_SENT = register_template(
    NotificationTemplate(
        kind="correspondence.letter.sent",
        title_key="correspondence.notifications.letter_sent.title",
        body_key="correspondence.notifications.letter_sent.body",
        default_channels=("inbox",),
    )
)
