""" Reusable HTML email templates and registry. """ # Invitation email template INVITE_EMAIL_TMPL = """
Hi {{email}},
{{inviter}} has invited you to join their team (ID: {{tenant_id}}).
Click the link below to complete your registration:
{{invite_url}}
If you did not request this, please ignore this email.
""" # Password reset code template RESET_CODE_EMAIL_TMPL = """Hello,
Your password reset code is: {{ code }}
This code will expire in {{ ttl_min }} minutes.
""" # Template registry EMAIL_TEMPLATES = { "invite": INVITE_EMAIL_TMPL, "reset_code": RESET_CODE_EMAIL_TMPL, }