Notifications sent to the mail channel will be emailed to the list of recipients.

Setting Up SMTP
Speedtest Tracker uses SMTP mail protocol to send email messages, you can use any service that allows you to send emails via SMTP.
To configure the mail server settings you'll need to update the following variables in your .env file or add them to the environment variables passed into the container. When choosing mail scheme both ssl and tls protocols are supported and you'll want to check with your mail provider for which to use and which port.
Make sure these are not set in both your .env file or your docker-compose.yml file as that can cause issues.
MAIL_MAILER=smtp
MAIL_HOST=
MAIL_PORT=
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_FROM_ADDRESS=
MAIL_FROM_NAME=Examples
Gmail
Go to https://myaccount.google.com/ and click on the "Security" tab.
Under the "How you sign in to Google" section, click on "2-Step Verification".
Click on "App passwords".
Enter a name for your app password and click "Create". Use this password for the
MAIL_PASSWORDenv variable in the example configuration below.
MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_USERNAME="[email protected]"
MAIL_PASSWORD="password"
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="Speedtest Tracker"Triggers
On completed speedtest
On each successful speedtest a notification will be send to the application.
On absolute threshold failure
On any absolute threshold failure a notification will be send to the application.
Recipients
A recipient is any valid email address, you can add one or many recipients that will receive notifications based on the triggers selected.
Last updated