|
|
|
|
|
- Properties specific to Reminder variables
- Note
Reminder (Variable type) In french: Rappel
The Reminder type is used to describe and handle a reminder to inform the user of an appointment. This type of variable is used by Appointment variables. The reminder characteristics can be defined and changed using different WLanguage properties. Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
rappelRDV is Reminder
rappelRDV.Type = reminderNotification
rappelRDV.Delay = 60
Add(rdv.Rappel, rappelRDV)
AppointmentModify(rdv)
rappelRDV is Reminder
rappelRDV.Type = reminderEmail
rappelRDV.Delay = 7 * 24 * 60
Add(rdv.Rappel, rappelRDV)
AppointmentModify(rdv)
Properties Properties specific to Reminder variables The following properties can be used to handle a reminder: | | | Property name | Type used | Effect |
---|
Delay | Integer or Duration | Timeout in minutes before the beginning of the appointment for which the reminder must be performed. This property can correspond to: - an integer corresponding to the number of minutes,
- a Duration variable,
- the duration in a readable format (e.g., 1 min).
| Type | Integer constant | Method that will be used to perform the reminder: - callbackDefault default method. This method depends on the setting of the device.
- reminderEmail send an email. This type of reminder is available only if the account associated with the appointment calendar supports this type of reminder and if this account is configured.
- reminderNotification Send a Notification.
- reminderSMS Send an SMS. This type of reminder is available only if the account associated with the appointment calendar supports this type of reminder and if this account is configured.
|
Remarks Note You can use VariableReset to reset the content of the Reminder variable.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|