Browse Source

Document "manage.py smtpd" in README, fixes #188

pull/193/head
Pēteris Caune 6 years ago
parent
commit
75fa27436e
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
1 changed files with 20 additions and 0 deletions
  1. +20
    -0
      README.md

+ 20
- 0
README.md View File

@ -169,6 +169,26 @@ EMAIL_USE_TLS = True
For more information, have a look at Django documentation,
[Sending Email](https://docs.djangoproject.com/en/1.10/topics/email/) section.
## Receiving Emails
healthchecks comes with a `smtpd` management command, which starts up a
SMTP listener service. With the command running, you can ping your
checks by sending email messages
to `[email protected]` email addresses.
Start the SMTP listener on port 2525:
$ ./manage.py smtpd --port 2525
Send a test email:
$ curl --url 'smtp://127.0.0.1:2525' \
--mail-from '[email protected]' \
--mail-rcpt '[email protected]' \
-F '='
## Sending Status Notifications
healtchecks comes with a `sendalerts` management command, which continuously


Loading…
Cancel
Save