mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 01:26:11 -08:00
1.2 KiB
Executable File
1.2 KiB
Executable File
📧 SMTP guides
Using the GMX SMTP server
- Go to your GMX account https://account.gmx.com
- Under Security Options enable 2FA (Two-factor authentication)
- Under Security Options generate an Application-specific password
- Home -> Email Settings -> POP3 & IMAP -> Enable access to this account via POP3 and IMAP
- In PiAlert specify these settings:
REPORT_MAIL=True
SMTP_SERVER='mail.gmx.com'
SMTP_PORT=465
SMTP_USER='gmx_email@gmx.com'
SMTP_PASS='<your Application-specific password>'
SMTP_SKIP_TLS=True
SMTP_FORCE_SSL=True
SMTP_SKIP_LOGIN=False
REPORT_FROM='gmx_email@gmx.com' # this has to be the same email as in SMTP_USER
REPORT_TO='some_target_email@gmail.com'
Using the Gmail SMTP server
-
Create an app password by following the instructions from Google, you need to Enable 2FA for this to work. https://support.google.com/accounts/answer/185833
-
Specify the following settings:
REPORT_MAIL=True
SMTP_SKIP_TLS=True
SMTP_FORCE_SSL=True
SMTP_PORT=465
SMTP_SERVER='smtp.gmail.com'
SMTP_PASS='16-digit passcode from google'
REPORT_TO='some_target_email@gmail.com'