RCC

Roxbury Community College

Strategic Framework Initiative

Email Template Preview

Preview and test email notification templates for Champions Framework communications.

Select Template

Quick Actions

Template Variables

These templates use TypeScript interfaces for type-safe data injection.

• championName
• sessionTitle
• sessionDate
• sessionTime
• location
• facilitator
• description
• registrationLink
Training Session Notification

Usage Instructions

1. Import the template functions:
import { 
  generateTrainingSessionEmail,
  generateStrategicUpdateEmail 
} from "@/components/EmailTemplates";
2. Prepare your data:
const emailData = {
  championName: "John Doe",
  sessionTitle: "Workshop Title",
  // ... other required fields
};
3. Generate the email HTML:
const htmlContent = generateTrainingSessionEmail(emailData);
4. Send via your email service:
await emailService.send({
  to: champion.email,
  subject: "Training Session Notification",
  html: htmlContent
});