This page will show several examples of templates that can be used for text messages, emails and letter notifications.
Text messages
Reminder text message
You have an appointment for a @Model.Service.Name on @Model.Appointment.StartDate.ToString(“dd-MM-yyyy”) at @Model.Appointment.StartTime.ToString(“hh\\:mm”) at location @Model.Location.Name.
This template can give the following message as a result:
You have an appointment for a 20 weeks ultrasound on 30-11-2017 at 6:00 PM at location Main Building.
Email messages
Subject of an email message
Add the following line of text at the start of your template to give the email a specific subject. Replace “Appointment reminder” with the text that you want your email to have as a subject.
<input class=”title” value=”Appointment reminder” type=”hidden” />
Confirmation email
<p>Dear @(@Model.Client.Gender == “Male” ? “sir” : @Model.Client.Gender == “Female” ? “madam” : String.Empty) @(@Model.Client.FirstName != null ? @Model.Client.FirstName : @Model.Client.Initials) @Model.Client.LastName,</p>
<p>You have an appointment:</p>
<p>
<b>Service:</b> @Model.Service.Name <br/>
<b>Date:</b> @Model.Appointment.StartDate.ToString(“dd-MM-yyyy”)<br/>
<b>Time:</b> @Model.Appointment.StartTime.ToString(“hh\\:mm”) uur <br/>
<b>Location:</b> @Model.Location.Name<br/>
<br/>
<br/>
</p>
<p>Kind regards,</p>
<p>helpLine</p>
Letters
Confirmation message
<p>Dear @(@Model.Client.Gender == “Male” ? “sir” : @Model.Client.Gender == “Female” ? “madam” : String.Empty) @(@Model.Client.FirstName != null ? @Model.Client.FirstName : @Model.Client.Initials) @Model.Client.LastName,</p>
<p>You have an appointment:</p>
<p>
<b>Service:</b> @Model.Service.Name <br/>
<b>Date:</b> @Model.Appointment.StartDate.ToString(“dd-MM-yyyy”)<br/>
<b>Time:</b> @Model.Appointment.StartTime.ToString(“hh\\:mm”) uur <br/>
<b>Location:</b> @Model.Location.Name<br/>
</p>
<br/>
<p>If you have questions, you can reach our assistant at phone number 0123456789. </p>
<br/>
<p>Kind regards,</p>
<p>helpLine</p>

