feat(editor): ✨ Add send email integration
This commit is contained in:
22
.env.example
22
.env.example
@ -1,14 +1,24 @@
|
||||
DATABASE_URL=postgresql://username:password@host:5450/typebot?schema=public
|
||||
|
||||
SECRET=secret
|
||||
SECRET=q3t6v9y$B&E)H@McQfTjWnZr4u7x!z%C # 256-bits secret (can be generated here: https://www.allkeysgenerator.com/Random/Security-Encryption-Key-Generator.aspx)
|
||||
NEXTAUTH_URL=http://localhost:3000
|
||||
|
||||
# Used for email auth and email notifications
|
||||
EMAIL_SERVER_USER=username
|
||||
EMAIL_SERVER_PASSWORD=password
|
||||
EMAIL_SERVER_HOST=smtp.example.com
|
||||
EMAIL_SERVER_PORT=587
|
||||
EMAIL_FROM=noreply@example.com
|
||||
AUTH_EMAIL_SERVER_USERNAME=username
|
||||
AUTH_EMAIL_SERVER_PASSWORD=password
|
||||
AUTH_EMAIL_SERVER_HOST=smtp.example.com
|
||||
AUTH_EMAIL_SERVER_PORT=587
|
||||
AUTH_EMAIL_FROM_EMAIL=noreply@example.com
|
||||
AUTH_EMAIL_FROM_NAME="John Smith"
|
||||
|
||||
# (Optional) Used for email notifications
|
||||
EMAIL_NOTIFICATIONS_SERVER_USERNAME=username
|
||||
EMAIL_NOTIFICATIONS_SERVER_PASSWORD=password
|
||||
EMAIL_NOTIFICATIONS_SERVER_HOST=smtp.example.com
|
||||
EMAIL_NOTIFICATIONS_SERVER_PORT=587
|
||||
EMAIL_NOTIFICATIONS_FROM_EMAIL=noreply@example.com
|
||||
EMAIL_NOTIFICATIONS_FROM_NAME="John Smith"
|
||||
|
||||
|
||||
# Storage
|
||||
# Used for uploading images, videos, etc...
|
||||
|
Reference in New Issue
Block a user