Springboardmen commited on
Commit
2904909
·
verified ·
1 Parent(s): 37a44c2

Update email_utils.py

Browse files
Files changed (1) hide show
  1. email_utils.py +2 -0
email_utils.py CHANGED
@@ -1,5 +1,7 @@
1
  import os
2
  import requests
 
 
3
 
4
  SENDGRID_API_KEY = os.getenv("SENDGRID_API_KEY")
5
  SENDER_EMAIL = os.getenv("SENDER_EMAIL")
 
1
  import os
2
  import requests
3
+ from dotenv import load_dotenv
4
+ load_dotenv()
5
 
6
  SENDGRID_API_KEY = os.getenv("SENDGRID_API_KEY")
7
  SENDER_EMAIL = os.getenv("SENDER_EMAIL")