Skip to content

Commit

Permalink
Added Default Env Variables
Browse files Browse the repository at this point in the history
  • Loading branch information
John-Wiens committed Feb 16, 2024
1 parent 0703c91 commit 4e8d095
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ load=false
### General Email Settings

#Email Broker Options: sendgrid , postmark, anything else will use generic SMTP mail server.
emailBroker=${CM_EMAIL_BROKER}
emailFromAddress=${CM_EMAIL_FROM_ADDRESS}
emailBroker=${CM_EMAIL_BROKER:""}
emailFromAddress=${CM_EMAIL_FROM_ADDRESS:""}


### Spring Mail Settings
Expand All @@ -36,9 +36,9 @@ spring.mail.properties.mail.smtp.starttls.enable=true


### SendGrid Email Settings
sendgrid.username=${CM_SENDGRID_USERNAME}
sendgrid.password=${CM_SENDGRID_PASSWORD}
sendgrid.username=${CM_SENDGRID_USERNAME:""}
sendgrid.password=${CM_SENDGRID_PASSWORD:""}


### Postmark Email Settings
postmark.api.secretKey=${CM_POSTMARK_SECRET_KEY}
postmark.api.secretKey=${CM_POSTMARK_SECRET_KEY:""}

0 comments on commit 4e8d095

Please sign in to comment.