// server/emails/welcome.js export const welcomeEmail = (member) => ({ from: 'Ghost Guild ', 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` })