Skip to content

Commit

Permalink
docs: update broken links for flask-mail config
Browse files Browse the repository at this point in the history
  • Loading branch information
Meowcenary committed Feb 24, 2025
1 parent c2827c9 commit ecde77e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/customize/emails.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Set this to False when sending actual emails.
"""
```
For more possible adjustments see the
[flask-mail-documentation](https://pythonhosted.org/Flask-Mail/#configuring-flask-mail).
[flask-mail-documentation](https://flask-mail.readthedocs.io/en/latest/#configuring).

If `MAIL_SUPPRESS_SEND` is set to `True` you can find the 'sent' emails in the
logs of the worker:
Expand Down
6 changes: 3 additions & 3 deletions docs/develop/howtos/dev_email.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ If a system is not listed below, check the original documentation on how to inst
brew update && brew install mailhog
```

and then start MailHog via
and then start MailHog via

```terminal
mailhog
Expand Down Expand Up @@ -57,7 +57,7 @@ MAIL_SUPPRESS_SEND = False
MAIL_SERVER = '127.0.0.1'

# Configured SMTP server's port
MAIL_PORT = 1025
MAIL_PORT = 1025
```

Restart the application and e-mails will be sent to the configured `SMTP` server.
Expand All @@ -66,5 +66,5 @@ Check the inbox in [MailHog UI](http://127.0.0.1:8025).

## Further reading

- How to configure flask mail - [docs](https://pythonhosted.org/Flask-Mail/#configuring-flask-mail)
- How to configure flask mail - [docs](https://flask-mail.readthedocs.io/en/latest/#configuring)
- MailHog - [original repo](https://github.com/mailhog/MailHog)

0 comments on commit ecde77e

Please sign in to comment.