-
Notifications
You must be signed in to change notification settings - Fork 1k
config properties default_email_delivery
GitHub Action edited this page Jul 7, 2026
·
5 revisions
v3.0.4
object (default_email_delivery)
| Property | Type | Required | Nullable | Defined by |
|---|---|---|---|---|
| enabled | boolean |
Required | cannot be null | Config |
| from_address | string |
Required | cannot be null | Config |
| from_name | string |
Required | cannot be null | Config |
| smtp | object |
Required | cannot be null | Config |
enabled determines whether the API delivers emails.
Disable if you want to send the emails yourself. To do so you must subscribe to the email.create webhook event.
enabled
-
is required
-
cannot be null
boolean
The default value is:
truefrom_address configures the sender address of emails sent to users.
from_address
-
is required
-
cannot be null
string
The default value is:
"noreply@hanko.io"from_name configures the sender name of emails sent to users.
from_name
-
is required
-
cannot be null
string
The default value is:
"Hanko"SMTP contains the SMTP server settings for sending mails.
smtp
-
is required
-
cannot be null
object (smtp)