ghostguild-org/server/emails/welcome.js
Jennie Robinson Faber c3c8b6bcd4 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.
2026-03-05 18:40:37 +00:00

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`
})