Skip to content

What is the content of the texts that are sent out

Currently this is the format of the texts that are sent out:

Reminder Texts:
"Reminder from " +CompanyName+" : "
+"Your '"+ServiceName+"' with "+EmployeeName
+" is at "
+Time

A NEW APPOINTMENT:
to Customer:
CustomerName
+ ", this message is to confirm your " 
+ ServiceName + " at " + CompanyName
+ " with "+ EmployeeName
+ " at "
+ Time
to Employee:
"This message is to confirm you have a new appointment with " 
+ CustomerName
+ " For a '"
+ ServiceName + "'"
+ " at "
+ Time

A MOVED APPOINTMENT :
to Customer:
CustomerName
+ ", this message is to confirm the moving of your "
+ ServiceName + " at " + CompanyName 
+ " from "
+ origTime
+ " with "
+ EmployeeName
+ " to "
+ Time
+ " with "
+ EmployeeName
to Employee:
(this should actually never get sent out, as moving an appointment should create a "deleted" message and a "created" message instead)
"This message is to confirm the moving of your "
+ ServiceName + " with " + CustomerName 
+ " to "
+ Time
+ " from "
+ origTime

A DELETED APPOINTMENT:
to Customer:
CustomerName
+ ", this message is to confirm the cancellation of your "
+ ServiceName + " at " + CompanyName
+ " at "
+ Time
+ " with "
+ EmployeeName
to Employee
"This message is to confirm the cancellation of your appointment with "
+ CustomerName
+ " which was for a "
+ ServiceName
+ " at "
+ Time

Feedback and Knowledge Base