- Google Workspace / Gmail SMTP
- Microsoft 365 SMTP
- AWS SES SMTP
- SendGrid / Postmark / Mailgun SMTP
- local dev SMTP sinks like Mailpit or MailHog
What this powers
In v1, thesmtp integration is used for:
/backgroundRCA completion notifications
- Root cause
- Top analysis
- What to do next
- a small internal stats block
Step 1: Configure the integration
Via CLI wizard
- SMTP host
- SMTP port
- security mode:
starttls,ssl, ornone - optional username/password
- sender address
- optional default recipient
Via environment variables
SMTP_USERNAME and
SMTP_PASSWORD.
Step 2: Verify
- connect to the SMTP server
- negotiate TLS when configured
- authenticate when credentials are provided
Step 3: Use it with background investigations
Enable background mode in the interactive shell:Troubleshooting
| Detail | Likely cause |
|---|---|
Missing recipient email address | No SMTP_DEFAULT_TO is configured yet. |
username and password must both be set | Only one auth field was provided. |
from_address must look like an email address | Sender address is malformed. |
SMTP connection failed | Host/port/TLS settings are wrong, or the relay is unreachable. |
Tracer