- 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.
14 lines
425 B
JavaScript
14 lines
425 B
JavaScript
// server/emails/welcome.js
|
|
export const welcomeEmail = (member) => ({
|
|
from: 'Ghost Guild <welcome@babyghosts.org>',
|
|
to: member.email,
|
|
subject: 'Welcome to Ghost Guild',
|
|
text: `Hi ${member.name},
|
|
|
|
Welcome to the ${member.circle} circle.
|
|
|
|
Next steps:
|
|
1. Watch for your Slack invite (within 24 hours)
|
|
2. Explore the resource library: https://ghostguild.org/members/resources
|
|
3. Introduce yourself in #introductions`
|
|
})
|