Skip to content

Commit ebafd7d

Browse files
committed
docs(secrets): improve .env file description in readme
1 parent e5d37b3 commit ebafd7d

File tree

1 file changed

+8
-2
lines changed
  • docs/docs/12_task_queues_emails/01_send_emails_python_mailgun

1 file changed

+8
-2
lines changed

docs/docs/12_task_queues_emails/01_send_emails_python_mailgun/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,14 @@ def send_simple_message(to, subject, body):
7272
Then let's go to the `.env` file and add your Mailgun API key and domain:
7373

7474
```text title=".env"
75-
MAILGUN_API_KEY="1f1ahfjhf4878797887187j-5ac54n"
76-
MAILGUN_DOMAIN="sandbox723b05d9.mailgun.org"
75+
MAILGUN_API_KEY="<insert your api key here>"
76+
MAILGUN_DOMAIN="<insert your domain here>"
7777
```
7878

79+
:::info
80+
The API Key should look something like this: `"1f1ahfjhf4878797887187j-5ac54n"`.
81+
82+
The Domain should look something like this: `"sandbox723b05d9.mailgun.org"`
83+
:::
84+
7985
With this, we're ready to actually send emails!

0 commit comments

Comments
 (0)