Skip to content

Commit

Permalink
Add DEFAULT_REPLY_TO env var in the settings
Browse files Browse the repository at this point in the history
  • Loading branch information
jefmoura committed Mar 1, 2018
1 parent 4ce6417 commit 7da7a2c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions docker-compose-dev.yml
Expand Up @@ -69,3 +69,4 @@ services:
- CHARGEBEE_SITE_API_KEY=test_31lcdE7L3grqdkGcvy24ik3lmlJrnA0Ez
- CHARGEBEE_SITE=toladata-test
- TOLA_TRACK_SYNC_ENABLED=False
- DEFAULT_REPLY_TO=noreply@test.com
6 changes: 6 additions & 0 deletions tola/settings/local.py
Expand Up @@ -179,3 +179,9 @@
chargebee.configure(os.getenv('CHARGEBEE_SITE_API_KEY'), os.getenv('CHARGEBEE_SITE'))

########## END CHARGEBEE CONFIGURATION

########## EMAIL CONFIGURATION

DEFAULT_REPLY_TO = os.getenv('DEFAULT_REPLY_TO', '')

########## END EMAIL CONFIGURATION

0 comments on commit 7da7a2c

Please sign in to comment.