Admin APIs/SMTP Configuration
Test SMTP
POST
/admin/testsmtpBearer token required
ADMINContent-Type:
application/jsonRequest Example
JSON
{
"email": "test@example.com"
}Code Examples
curl -X POST 'https://<your-domain>:3001/admin/testsmtp' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{
"email": "test@example.com"
}'