Add new package to enable sending emails from the application
Add `nodemailer` package to package.json for server-side email functionality. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 23852c00-4779-460a-9e0c-d09fee4b6c92 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 45289cdb-e291-4ef6-838b-992692744b98 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/23852c00-4779-460a-9e0c-d09fee4b6c92/koutl3W Replit-Helium-Checkpoint-Created: true
This commit is contained in:
parent
573e111b53
commit
1d4ab71636
5
.replit
5
.replit
@ -49,6 +49,11 @@ waitForPort = 5000
|
||||
BUNNY_LIBRARY_ID = "476412"
|
||||
BUNNY_CDN_HOST = "vz-7982dfc4-cc8.b-cdn.net"
|
||||
CLOUDINARY_CLOUD_NAME = "djqxt0pf3"
|
||||
SMTP_HOST = "mail.folx.tv"
|
||||
SMTP_PORT = "465"
|
||||
SMTP_USER = "web@folx.tv"
|
||||
SMTP_FROM = "web@folx.tv"
|
||||
CONTACT_TO = "office@folx.tv"
|
||||
|
||||
[agent]
|
||||
integrations = ["javascript_openai_ai_integrations:2.0.0"]
|
||||
|
||||
10
package-lock.json
generated
10
package-lock.json
generated
@ -60,6 +60,7 @@
|
||||
"memorystore": "^1.6.7",
|
||||
"multer": "^2.1.0",
|
||||
"next-themes": "^0.4.6",
|
||||
"nodemailer": "^8.0.1",
|
||||
"openai": "^6.25.0",
|
||||
"p-limit": "^7.3.0",
|
||||
"p-retry": "^7.1.1",
|
||||
@ -6822,6 +6823,15 @@
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/nodemailer": {
|
||||
"version": "8.0.1",
|
||||
"resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-8.0.1.tgz",
|
||||
"integrity": "sha512-5kcldIXmaEjZcHR6F28IKGSgpmZHaF1IXLWFTG+Xh3S+Cce4MiakLtWY+PlBU69fLbRa8HlaGIrC/QolUpHkhg==",
|
||||
"license": "MIT-0",
|
||||
"engines": {
|
||||
"node": ">=6.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/normalize-path": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
||||
|
||||
@ -62,6 +62,7 @@
|
||||
"memorystore": "^1.6.7",
|
||||
"multer": "^2.1.0",
|
||||
"next-themes": "^0.4.6",
|
||||
"nodemailer": "^8.0.1",
|
||||
"openai": "^6.25.0",
|
||||
"p-limit": "^7.3.0",
|
||||
"p-retry": "^7.1.1",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user