mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-01 18:37:31 +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
27 lines
621 B
JSON
27 lines
621 B
JSON
{
|
|
"name": "@tooljet-plugins/smtp",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"build": "tsc -b",
|
|
"clean": "rimraf ./dist && rimraf tsconfig.tsbuildinfo"
|
|
},
|
|
"homepage": "https://github.com/tooljet/tooljet#readme",
|
|
"dependencies": {
|
|
"@tooljet-plugins/common": "file:../common",
|
|
"nodemailer": "^6.7.2",
|
|
"react": "^17.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/nodemailer": "^6.4.4"
|
|
}
|
|
}
|