Setup SMTP provider
Aidbox allows you to configure SMTP email provider to manage your email communications.
Add SMTP provider
Update your AidboxConfig
resource with provider credentials to add a new SMTP provider
PUT /AidboxConfig/provider
{
"provider": {
"smtp-provider": {
"type": "smtp",
"host": "smtp.example.com",
"port": 465,
// "ssl": true,
"tls": true,
"from": "[email protected]",
"username": "[email protected]",
"password": "password"
}
}
}
You can set either "ssl"
or "tls"
depending what your SMTP supports.
Last updated
Was this helpful?