1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 23:59:35 +05:30

(feat): added contact form submission notification via email

This commit is contained in:
2023-12-10 23:57:58 +05:30
parent cec8a42a52
commit 88839cd861
3 changed files with 61 additions and 9 deletions

View File

@@ -1 +1,13 @@
RECAPTCHA_SECRET = "Your reCaptcha Secret Key"
#This is an example of secret environmental variables
#original environmental variable should be created with .env filename
DB_HOST = "Your Database Host Name Here"
DB_USER = "Your Database Username Here"
DB_PASS = "Your Database Password Here"
DB_NAME = "Your Database Name Here"
RECAPTCHA_SECRET = "Your reCaptcha Secret/Private Site Key Here"
SMTP_HOST = "Your SMTP Sender Host Name Here"
SMTP_USER = "Your SMTP Sender Username Here"
SMTP_PASS = "Your SMTP Sender Password Here"
SMTP_SENDTO = "Your Email Inbox Address to Receive Emails"
SMTP_PORT = 587