Skip to content

Commit

Permalink
build: 3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosCarmona committed Feb 14, 2021
1 parent 295eb90 commit e74186f
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 16 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@runnerty/notifier-mail",
"version": "3.0.3",
"version": "3.0.4",
"description": "Runnerty module: Mail notifier",
"author": "Runnerty Tech",
"license": "MIT",
Expand Down Expand Up @@ -28,7 +28,7 @@
"nodemailer": "~6.4.18"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1"
Expand Down
4 changes: 0 additions & 4 deletions scaffold/assets/templates/mail-notification/html.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,6 @@
>
@GV(message)
<br /><br />
Value: @GV(value_one)
<br /><br />
Date: @GV(sample_date)
<br /><br />
</div>
</td>
</tr>
Expand Down
41 changes: 41 additions & 0 deletions scaffold/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
"bcc": ["[email protected]"],
"templateDir": "./templates",
"template": "mail-notification",
"attachments": [
{
"filename": "runnerty.png",
"path": "./templates/mail-notification/runnerty.png",
"cid": "[email protected]"
}
],
"ejsRender": true
},
{
Expand All @@ -27,6 +34,40 @@
},
"templateDir": "./templates",
"template": "mail-notification",
"attachments": [
{
"filename": "runnerty.png",
"path": "./templates/mail-notification/runnerty.png",
"cid": "[email protected]"
}
],
"ejsRender": true
},
{
"id": "mail_sparkpost",
"type": "@runnerty-executor-mail",
"from": "Runnerty <[email protected]>",
"transport": {
"host": "smtp.eu.sparkpostmail.com",
"port": 587,
"secure": false,
"tls": {
"ciphers": "SSLv3"
},
"auth": {
"user": "SMTP_Injection",
"pass": "sparkpost_api_key"
}
},
"templateDir": "./templates",
"attachments": [
{
"filename": "runnerty.png",
"path": "./templates/mail-notification/runnerty.png",
"cid": "[email protected]"
}
],
"template": "mail-notification",
"ejsRender": true
}
]
Expand Down

0 comments on commit e74186f

Please sign in to comment.