Skip to content

Commit

Permalink
Add default values for Mailgun config.
Browse files Browse the repository at this point in the history
  • Loading branch information
toddbirchard committed Feb 22, 2024
1 parent 2d5ad3a commit 2df59c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ class Settings(BaseSettings):
MAILGUN_EMAIL_SERVER: str = getenv("MAILGUN_EMAIL_SERVER")
MAILGUN_NEWSLETTER_TEMPLATE: str = getenv("MAILGUN_NEWSLETTER_TEMPLATE")
MAILGUN_SENDER_API_KEY: str = getenv("MAILGUN_SENDER_API_KEY")
MAILGUN_FROM_SENDER_EMAIL: str = getenv("MAILGUN_FROM_SENDER_EMAIL")
MAILGUN_FROM_SENDER_NAME: str = getenv("MAILGUN_FROM_SENDER_NAME")
MAILGUN_FROM_SENDER_EMAIL: str = getenv("MAILGUN_FROM_SENDER_EMAIL", "noreply@hackersandslackers.com")
MAILGUN_FROM_SENDER_NAME: str = getenv("MAILGUN_FROM_SENDER_NAME", "Hackers and Slackers")
MAILGUN_PERSONAL_EMAIL: str = getenv("MAILGUN_PERSONAL_EMAIL")
MAILGUN_PASSWORD: str = getenv("MAILGUN_PASSWORD")
MAILGUN_SUBJECT_LINE: str = "To Hack or to Slack; That is the Question."
Expand Down

0 comments on commit 2df59c0

Please sign in to comment.