feat(emails): warmer copy across invite, welcome, and event emails

Friendlier tone + ghost emoji on invite/welcome subjects; invite
templates now offer a reply-to-this-email fallback; tighten OIDC
wiki sign-in and event registration confirmation copy.
This commit is contained in:
Jennie Robinson Faber 2026-04-20 13:48:38 +01:00
parent 91711aa39b
commit 0ce61756b7
6 changed files with 19 additions and 19 deletions

View file

@ -75,7 +75,7 @@ export default defineEventHandler(async (event) => {
const { error: emailError } = await resend.emails.send({
from: 'Ghost Guild <welcome@babyghosts.org>',
to: [member.email],
subject: "You're invited to Ghost Guild",
subject: "You're invited to Ghost Guild! 👻",
text: emailText,
html: emailHtml,
})
@ -102,7 +102,7 @@ export default defineEventHandler(async (event) => {
logActivity(member._id, 'email_sent', {
emailType: 'invite',
subject: "You're invited to Ghost Guild",
subject: "You're invited to Ghost Guild! 👻",
body: emailText
})

View file

@ -66,7 +66,7 @@ export default defineEventHandler(async (event) => {
const { error: emailError } = await resend.emails.send({
from: 'Ghost Guild <welcome@babyghosts.org>',
to: [preReg.email],
subject: "You're invited to Ghost Guild",
subject: "You're invited to Ghost Guild! 👻",
text: emailText,
html: emailHtml,
})