/** * Help Settings Email Templates Page */ import React from 'react'; import { useNavigate, Link } from 'react-router-dom'; import { ArrowLeft, Mail, FileText, Edit, Eye, Bell, CheckCircle, ChevronRight, HelpCircle, Code, } from 'lucide-react'; const HelpSettingsEmail: React.FC = () => { const navigate = useNavigate(); return (

Email Templates Guide

Customize automated emails

Overview

Email Templates let you customize the automated emails sent to customers. Personalize confirmation messages, reminders, and notifications to match your brand voice.

Template Types

Booking Confirmation

Sent when appointment is booked

Appointment Reminder

Sent before the appointment

Reschedule Notice

Sent when appointment is changed

Cancellation

Sent when appointment is cancelled

Template Variables

Use these variables in your templates to include dynamic content:

{"{{customer_name}}"} - Customer's full name
{"{{service_name}}"} - Name of the booked service
{"{{appointment_date}}"} - Date of appointment
{"{{appointment_time}}"} - Time of appointment
{"{{business_name}}"} - Your business name

Best Practices

  • Keep emails concise and include only essential information
  • Use preview mode to test templates before activating
  • Include clear calls to action (cancel, reschedule links)

Related Settings

Appearance Settings Booking Settings

Need More Help?

Our support team is ready to help with any questions.

); }; export default HelpSettingsEmail;