vlobzakov/docs

[/creating-manifest/handling-custom-responses/:email parameter has no effect.]: Note The email parameter... - Here http://docs.cloudscriptin...

Closed this issue · 2 comments

Target page:

http://docs.cloudscripting.com/creating-manifest/handling-custom-responses/

Reporter:

email parameter has no effect.

Comment:

Here http://docs.cloudscripting.com/creating-manifest/handling-custom-responses/ the email parameter has no effect. So the manifests are the same:

type: update
name: response handlers

onInstall:
  script: |
    return {'result': 'success','message': 'Hello!!', 'email': 'Email!!'}
success: success!!
type: update
name: response handlers

onInstall:
  script: |
    return {'result': 'success','message': 'Hello!!'}
success: success!!

so there is no reason to put email parameter into return

Selected text:

Note
The email parameter is available only for the success response type. The email is delivered when an action is executed with the success response code.

@SlavaKatiukha В результате выполнения двух вышеуказанных манифестов приходит письмо с текстом "Hello!!" и имеем попап success с текстом "Hello!!". Параметр email никакого влияния ни на что не оказывает.

not actual