Fix email verification domain and membership fee amount
All checks were successful
Build And Push Image / docker (push) Successful in 3m7s

- Update domain config to use portal.monacousa.org for verification links
- Correct membership fee from €50 to €150/year in welcome emails
- Add password setup link to verification success page
- Include registration date in welcome email template
This commit is contained in:
2025-08-09 18:10:33 +02:00
parent a4e8231a3b
commit 794b6a09f0
6 changed files with 47 additions and 7 deletions

View File

@@ -134,7 +134,12 @@ export default defineEventHandler(async (event) => {
firstName: member.first_name,
lastName: member.last_name,
verificationLink,
memberId: memberId
memberId: memberId,
registrationDate: new Date().toLocaleDateString('en-US', {
year: 'numeric',
month: 'long',
day: 'numeric'
})
});
emailSent = true;