Quick Start¶
1. Install¶
2. Configure¶
Gmail users: enable 2-Step Verification, create an App Password,
and put it in .env:
Reference it in config.json:
{
"accounts": [
{
"email": "you@gmail.com",
"password": "${SMTP_PASSWORD_1}",
"server": "smtp.gmail.com",
"port": 587
}
]
}
3. Prepare input¶
endorsers.txt:
4. Verify¶
python run.py --verify # pre-flight checks
python run.py --test you@gmail.com # send a test email to yourself
python run.py --dry-run # preview next send + open preview.html
5. Send¶
6. Follow up¶
python run.py --followups 7 # who hasn't replied in 7 days?
python run.py --followups 7 --send 3
python run.py --mark-replied alice.smith@example.com
Warning
The tool will never send anything unless you run --live or --followups --send.
--dry-run is fully offline.