
Roxbury Community College
Strategic Framework Initiative
Preview and test email notification templates for Champions Framework communications.
These templates use TypeScript interfaces for type-safe data injection.
Dear Sarah Johnson,
A new training session has been scheduled as part of the RCC Champions Framework program. We encourage you to attend to enhance your skills and stay aligned with our strategic priorities.
Learn advanced facilitation techniques for leading strategic framework discussions with your peers. This interactive workshop covers active listening, managing group dynamics, and translating strategic concepts into actionable department-level initiatives.
Why Attend?
If you have any questions about this training session, please contact the Institutional Effectiveness Office at [email protected].
We look forward to seeing you there!
Best regards,
RCC Champions Framework Team
Institutional Effectiveness Office
import {
generateTrainingSessionEmail,
generateStrategicUpdateEmail
} from "@/components/EmailTemplates";const emailData = {
championName: "John Doe",
sessionTitle: "Workshop Title",
// ... other required fields
};const htmlContent = generateTrainingSessionEmail(emailData);
await emailService.send({
to: champion.email,
subject: "Training Session Notification",
html: htmlContent
});