mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-23 22:47:28 +00:00
* Smtp server datasource - Done connection & test connection * Worked on basic mail delivery - Changed the icon - Defined operations json - Implemented text and html email sending * Username / ID changed to encrypted * Added attachments * Changed placeholder of attachment * Changed datasource name * Changed query options - Added multiple to_email option - Added from name field * Renamed the datasource * cleaning post rename plugin problems * Fixed minor code issues * Added smtp documentation
67 lines
No EOL
1.2 KiB
JSON
67 lines
No EOL
1.2 KiB
JSON
|
|
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "SMTP datasource",
|
|
"description": "A schema defining SMTP datasource",
|
|
"type": "api",
|
|
"source": {
|
|
"name": "SMTP",
|
|
"kind": "smtp",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"password": {
|
|
"encrypted": true
|
|
}
|
|
}
|
|
},
|
|
"defaults": {
|
|
"host": {
|
|
"value": "localhost"
|
|
},
|
|
"port": {
|
|
"value": 465
|
|
},
|
|
"user": {
|
|
"value": ""
|
|
},
|
|
"password": {
|
|
"value": ""
|
|
}
|
|
},
|
|
"properties": {
|
|
"host": {
|
|
"label": "Host",
|
|
"key": "host",
|
|
"type": "text",
|
|
"description": "Enter host"
|
|
},
|
|
"port": {
|
|
"label": "Port",
|
|
"key": "port",
|
|
"type": "text",
|
|
"description": "Recommended port 465 (Secured)"
|
|
},
|
|
"user": {
|
|
"label": "User",
|
|
"key": "user",
|
|
"type": "text",
|
|
"description": "Enter username"
|
|
},
|
|
"password": {
|
|
"label": "Password",
|
|
"key": "password",
|
|
"type": "password",
|
|
"description": "Enter password"
|
|
}
|
|
},
|
|
"required": [
|
|
"host",
|
|
"port",
|
|
"user",
|
|
"password"
|
|
]
|
|
} |