Skip to content

Commit

Permalink
fix: correct typo sendEmail to sendMail under onErrorActions
Browse files Browse the repository at this point in the history
  • Loading branch information
MLenterman committed Oct 29, 2024
1 parent 61010e1 commit aa42df1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions charts/openforms2xxllnc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -660,31 +660,31 @@ openforms2xxllnc:
## @skip openforms2xxllnc.workflows.onErrorActions [object]
onErrorActions:
## @skip openforms2xxllnc.workflows.onErrorActions.onCaseNotFound [object]
## @param openforms2xxllnc.workflows.onErrorActions.onCaseNotFound.sendEmail Enable sending a mail to the form initiator when this specific error occurs.
## @param openforms2xxllnc.workflows.onErrorActions.onCaseNotFound.sendMail Enable sending a mail to the form initiator when this specific error occurs.
## Otherwise an exception is throw, which requires manual intervention. Enabling the sending of a mail requires 'openforms2xxllnc.connections.noReplySmtp' to be configured.
## @param openforms2xxllnc.workflows.onErrorActions.onCaseNotFound.templateName [string] Name of the mail template to be used when this specific error occurs.
## Mail templates can be configured in the 'openforms2xxllnc.mailTemplates' section.
##
onCaseNotFound:
sendEmail: false
sendMail: false
templateName: ""
## @skip openforms2xxllnc.workflows.onErrorActions.onSubjectNotEqualsCaseSubject [object]
## @param openforms2xxllnc.workflows.onErrorActions.onSubjectNotEqualsCaseSubject.sendEmail Enable sending a mail to the form initiator when this specific error occurs.
## @param openforms2xxllnc.workflows.onErrorActions.onSubjectNotEqualsCaseSubject.sendMail Enable sending a mail to the form initiator when this specific error occurs.
## Otherwise an exception is throw, which requires manual intervention. Enabling the sending of a mail requires 'openforms2xxllnc.connections.noReplySmtp' to be configured.
## @param openforms2xxllnc.workflows.onErrorActions.onSubjectNotEqualsCaseSubject.templateName [string] Name of the mail template to be used when this specific error occurs.
## Mail templates can be configured in the 'openforms2xxllnc.mailTemplates' section.
##
onSubjectNotEqualsCaseSubject:
sendEmail: false
sendMail: false
templateName: ""
## @skip openforms2xxllnc.workflows.onErrorActions.onCaseClosed [object]
## @param openforms2xxllnc.workflows.onErrorActions.onCaseClosed.sendEmail Enable sending a mail to the form initiator when this specific error occurs.
## @param openforms2xxllnc.workflows.onErrorActions.onCaseClosed.sendMail Enable sending a mail to the form initiator when this specific error occurs.
## Otherwise an exception is throw, which requires manual intervention. Enabling the sending of a mail requires 'openforms2xxllnc.connections.noReplySmtp' to be configured.
## @param openforms2xxllnc.workflows.onErrorActions.onCaseClosed.templateName [string] Name of the mail template to be used when this specific error occurs.
## Mail templates can be configured in the 'openforms2xxllnc.mailTemplates' section.
##
onCaseClosed:
sendEmail: false
sendMail: false
templateName: ""


0 comments on commit aa42df1

Please sign in to comment.