Skip to content
Merged
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
22 changes: 22 additions & 0 deletions settings/notifications/mail.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,28 @@ MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="Speedtest Tracker"
```

**GMAIL example:**

Steps for creating an app password.
- Go to your <a href="https://myaccount.google.com" title="Click here to access your Google Account" target="_blank">Google Account</a>
.
- Select Security.
- Under "How you sign in to Google," choose 2-Step Verification.
- Click on App passwords.
- Enter a name and generate a password.
- Remember to copy the password before closing; otherwise, you'll need to create another one.

```
MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
[email protected]
MAIL_PASSWORD="password"
MAIL_ENCRYPTION=tls
[email protected]
MAIL_FROM_NAME="Speedtest Tracker"
```

### Triggers

<table><thead><tr><th width="237">Name</th><th>Description</th></tr></thead><tbody><tr><td>On completed speedtest</td><td>On each successful speedtest a notification will be send to the application.</td></tr><tr><td>On absolute threshold failure</td><td>On any absolute threshold failure a notification will be send to the application.</td></tr></tbody></table>
Expand Down