Spaces:
Sleeping
Sleeping
Update email_utils.py
Browse files- 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")
|