click "Generate"
- Click Generate test address — you'll get a unique
test-XXX@neutrino.workaddress. - Send an email to it from the MTA / domain you want to test.
- The page auto-loads results when the analysis finishes (usually under 30s).
Use from automation (push webhook)
TOKEN=$(curl -s -X POST https://mt.neutrino.work/api/v1/tests \
-H 'Content-Type: application/json' \
-d '{"webhook":"https://alerts.example.com/mt","sender_domain":"example.com"}' \
| jq -r .token)
# send a test mail from your monitored MTA
echo "Subject: deliverability check $TOKEN\n\nbody" | sendmail test-$TOKEN@neutrino.work
# the tester POSTs the JSON result to the webhook when analysis completes