-
Notifications
You must be signed in to change notification settings - Fork 899
config properties email_delivery
GitHub Action edited this page Aug 26, 2024
·
6 revisions
v1.0.1
object
(email_delivery)
Property | Type | Required | Nullable | Defined by |
---|---|---|---|---|
enabled | boolean |
Optional | cannot be null | Config |
from_address | string |
Optional | cannot be null | Config |
from_name | string |
Optional | cannot be null | Config |
smtp | object |
Optional | 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 optional
-
cannot be null
boolean
The default value is:
true
from_address
configures the sender address of emails sent to users.
from_address
-
is optional
-
cannot be null
string
The default value is:
from_name
configures the sender name of emails sent to users.
from_name
-
is optional
-
cannot be null
string
The default value is:
"Hanko"
SMTP
contains the SMTP server settings for sending mails.
smtp
-
is optional
-
cannot be null
object
(smtp)