Refactor email templates to use plain text format and update sender addresses

- Simplified the magic link email format to plain text for better compatibility.
- Updated the welcome email to use plain text and changed the sender address to match the domain.
- Enhanced event registration email format to plain text, removing HTML styling for a cleaner approach.
This commit is contained in:
Jennie Robinson Faber 2026-03-05 18:40:37 +00:00
parent 8143631364
commit c3c8b6bcd4
5 changed files with 132 additions and 626 deletions

View file

@ -326,3 +326,7 @@ export const adminMemberCreateSchema = z.object({
circle: z.enum(['community', 'founder', 'practitioner']),
contributionTier: z.enum(['0', '5', '15', '30', '50'])
})
export const adminRoleUpdateSchema = z.object({
role: z.enum(['admin', 'member'])
})