diff --git a/docs/creating-manifest/visual-settings.md b/docs/creating-manifest/visual-settings.md index 7cbd57f4..0a2c7c35 100644 --- a/docs/creating-manifest/visual-settings.md +++ b/docs/creating-manifest/visual-settings.md @@ -3009,6 +3009,8 @@ success: ``` @@! +In the last example above, the localization functionality is applied, which depends upon the Jelastic Platform selected language. + Email notification also can be customized in custom responses. In this case `email` value from handle custom response has a higher priority. For example: @@@ ```yaml @@ -3037,10 +3039,43 @@ success: success!! ``` @@! -In the last example above, the localization functionality is applied, which depends upon the Jelastic Platform selected language. - Custom responses can be returned within `return` or `script` actions. More details about custom responses here. +### How to disable success text email notification + +There are three ways how to email notification can be disabled regarding manifest installation: + 1. Do not specify the *success* response block inside a manifest. + 2. Specify parameter `email`: **false** inside *success* response block. + +@@@ +```yaml +type: update +name: Success Text Customization + +onInstall: + log: success text test 5 + +success: + text: success message!!! + email: false +``` +```json +{ + "type": "update", + "name": "Success Text Customization", + "onInstall": { + "log": "success text test 5" + }, + "success": { + "text": "success message!!!", + "email": false + } +} +``` +@@! + + 3. Do not specify parameter `email` inside *return* action response block. + ## JPS installation without environment In case no environment is specified in the manifest, the installation dialog has no *Environment Name* and *Region* fields, but the *[custom settings](/creating-manifest/visual-settings/#custom-settings)* can be used and displayed.