@hedhog/mail 0.0.11 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +2 -1
- package/src/mail.template.ejs +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hedhog/mail",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.13",
|
4
4
|
"main": "dist/index.js",
|
5
5
|
"scripts": {
|
6
6
|
"build": "tsc --project tsconfig.production.json && npm version patch",
|
@@ -17,6 +17,7 @@
|
|
17
17
|
],
|
18
18
|
"dependencies": {
|
19
19
|
"@nestjs/axios": "^3.0.3",
|
20
|
+
"axios": "^1.7.7",
|
20
21
|
"mimemessage": "1.0.5"
|
21
22
|
},
|
22
23
|
"peerDependencies": {
|
package/src/mail.template.ejs
CHANGED
@@ -1 +1 @@
|
|
1
|
-
MailModule.
|
1
|
+
MailModule.forRoot({ global: true, type: 'SMTP', host: 'changeme', port: 465, secure: false, username: 'changeme', password: 'changeme' })
|