/bff/emailer/setup-smtp
Saves SMTP server configuration and sends a test email to verify connectivity.
EmailerpostBffEmailerSetup-smtp
Parameters
6 body
Body · 6
testAddressstringRequiredEmail address to send a test message to.
hoststringRequiredSMTP server hostname.
portstringRequiredSMTP server port.
fromstringRequiredSender email address (From header).
authUserstringRequiredSMTP authentication username.
authPasswordstringRequiredSMTP authentication password.
Request
POST /bff/emailer/setup-smtp
curl -X POST "https://api.bizkithub.com/bff/emailer/setup-smtp" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"testAddress": "test@example.com",
"host": "smtp.example.com",
"port": "587",
"from": "noreply@example.com",
"authUser": "example_authUser",
"authPassword": "example_authPassword"
}'Response
JSON payload
{
"success": true
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.