-
Notifications
You must be signed in to change notification settings - Fork 0
/
SendEmail.json
35 lines (35 loc) · 1.02 KB
/
SendEmail.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "SendEmail",
"version": "1.0",
"author": "Michela Lecce",
"url": "https://github.com/norgalades/SendEmail",
"license": "AGPL-V3",
"description": "Send an email from a TheHive task / task log. MANDATORY syntax: mailto: example@amadeus.com; subject: Email subject; body: Write here what you need!",
"dataTypeList": ["thehive:case_task", "thehive:case_task_log"],
"command": "SendEmail/send_email.py",
"baseConfig": "SendEmail",
"configurationItems": [
{
"name": "address check",
"description": "if you want to enable the email addresses verification",
"type": "boolean",
"multi": false,
"required": true
},
{
"name": "from",
"description": "email address from which the mail is send",
"type": "string",
"multi": false,
"required": true
},
{
"name": "smtp_host",
"description": "SMTP server used to send mail",
"type": "string",
"multi": false,
"required": true,
"defaultValue": "localhost"
}
]
}