Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update broken links for flask-mail config #743

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
Loading