Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Different text by reminder type

...


If you have multiple reminders, it can be awkward to define everything in one mail. The module can therefore use a separate mail template for each reminder.
The mail template can be selected in the module configuration.

But if you want to use only one mail template, and you still want to write different texts per reminder, you can use the "$ reminder_type" variable.


Code Block
{if $reminder_type eq 1}
This is your first reminder about ...
{/if}


{if $reminder_type eq 5}
This is your last reminder
{/if}

...