From 04b85a3906e17b9459626b417966ee3c170447ea Mon Sep 17 00:00:00 2001 From: pankajjangid05 Date: Tue, 4 Apr 2023 14:47:51 +0530 Subject: [PATCH] Email config added in properties file for utils --- src/main/resources/application.properties | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 1014e9c..2aced5a 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -93,4 +93,11 @@ spring.azure.blob.store.account.key=${AZURE_BLOB_STORE_ACCOUNT_KEY:#{"key"}} spring.azure.blob.store.container.name=${AZURE_BLOB_STORE_CONTAINER:#{"container"}} # Template Service Base Url -template.service.base.url=${TEMPLATE_SERVICE_BASE_URL:#{"http://templater2.ngrok.samagra.io/"}} \ No newline at end of file +template.service.base.url=${TEMPLATE_SERVICE_BASE_URL:#{"http://templater2.ngrok.samagra.io/"}} + +# Email Config +spring.mail.host=${EMAIL_HOST:#{""}} +spring.mail.port=${EMAIL_PORT:#{"587"}} +spring.mail.username=${EMAIL_USERNAME:#{""}} +spring.mail.password=${EMAIL_PASSWORD:#{""}} +spring.mail.recipient=${RECIPIENT_EMAILS:#{""}} \ No newline at end of file