What are Actions?
Actions are ran after form submission & field validation. They can utilize the submitted field data, add new data or ultimately still reject the submission.
Combining these actions, you can create complex, multi-dimensional workflows for your forms, without leaving the Kirby Panel.
Available Actions
Abort
Cancel the submission with a custom error message.
Conditional Action
Execute other actions based on certain criteria you set in the panel.
Discord Message
Automatically send submissions to your Discord channel.
Send Email
Receive submissions as email or send emails to the sender.
Redirect
Redirect the sender to any page or URL.
Webhook
Connect thousands of services by sending submission data to third-party
Actions created by the community
- None
Configuring Actions
By default, all registered and configured actions are available, but you can customize the available actions in your config.php
.
// site/config/config.php
return [
'tobimori.dreamform' => [
'actions' => [
'available' => ['abort', 'conditional', 'redirect', 'webhook', /* other actions here */ ],
],
],
];
Options
tobimori.dreamform.actions. | Default | Accepts | Description |
---|---|---|---|
tobimori.dreamform.actions. available |
Default
true |
Accepts
boolean|array |
Available actions, true enables all actions |