{ "server": { "port": 2525, "auth": { "user": "admin", "pass": "your-secure-password" } }, "providers": [ { "name": "Gmail", "host": "smtp.gmail.com", "port": 465, "secure": true, "auth": { "user": "your-email@gmail.com", "pass": "your-app-password" }, "from": "your-email@gmail.com" }, { "name": "SendGrid", "host": "smtp.sendgrid.net", "port": 587, "secure": false, "auth": { "user": "apikey", "pass": "your-sendgrid-api-key" }, "from": "noreply@yourdomain.com" }, { "name": "Outlook", "host": "smtp.office365.com", "port": 465, "secure": true, "auth": { "user": "your-email@outlook.com", "pass": "your-password" }, "from": "your-email@outlook.com" } ], "queue": { "maxRetries": 5, "retryDelay": 60000 } }