Relay SMS Platform
Available Templates

Appointment Templates

One production-ready template for appointment and booking scenarios.

Starter Tier: Use sendTypedTemplate

If you're on Starter tier, use the SDK's sendTypedTemplate() method or the /v1/messages/send-template API endpoint. These examples show template rendering only - see Using Templates for complete sending examples.

Allowed on Starter Tier

The Appointment template is approved for Starter tier shared numbers (Customer Care campaign type).

Appointment Reminder

Send appointment reminders with confirmation option.

TypeScriptCode
import { getTemplate, renderTemplate } from '@relay-works/templates'; const template = getTemplate('appointment-reminder'); const result = renderTemplate(template, { company: 'Acme Clinic', date: 'Jan 15', time: '2:00 PM', location: 'Downtown Office', confirmUrl: 'https://relay.link/confirm' }); // "Reminder: Your Acme Clinic appointment is Jan 15 at 2:00 PM at Downtown Office. Confirm: https://relay.link/confirm"

Variables:

  • company (string) - Your business name
  • date (string) - Appointment date (keep short)
  • time (string) - Appointment time
  • location (string) - Location name
  • confirmUrl (string) - Confirmation URL

Best for: Appointment reminders, booking confirmations, calendar events

Use Cases

This template works well for:

  • Medical/dental appointments
  • Consultation bookings
  • Service appointments
  • Meeting reminders
  • Event confirmations

Next Steps:

Last modified on