You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ConfirmationFinisher replaces placeholders in the form {someFieldName}.
The EmailFinisher expects the form values to be prefixed with formValues., e.g. {formValues.someFieldName}.
This feature suggests to make form Values directly accessible as view variables in the EmailFinisher, too.
Note: The formValues.* format should still be supported to ensure greater backwards compatibility
The text was updated successfully, but these errors were encountered:
Adjusts the `EmailFinisher` so that formValues are available as placeholders
directly (i.e. without requiring the `formValues.*` prefix).
That allows the `EmailFinisher` to be used the same way as the `ConfirmationFinisher`.
Note: This change is backwards compatible since the `formValues.` prefix is
still supported.
Resolves: #121
The
ConfirmationFinisher
replaces placeholders in the form{someFieldName}
.The
EmailFinisher
expects the form values to be prefixed withformValues.
, e.g.{formValues.someFieldName}
.This feature suggests to make form Values directly accessible as view variables in the
EmailFinisher
, too.Note: The
formValues.*
format should still be supported to ensure greater backwards compatibilityThe text was updated successfully, but these errors were encountered: