wzkb_help_widget_contact_submitted
Fires after help widget contact form is successfully submitted.
Allows custom actions like logging, notifications, CRM integration, etc.
Type: action
Since: 3.0.0
Source: includes/pro/help-widget/class-help-widget.php line 749
Parameters
| Type | Name | Description |
|---|---|---|
string |
$name |
Sender name. |
string |
$email |
Sender email. |
string |
$subject |
Message subject. |
string |
$message |
Message content. |
Usage
add_action( 'wzkb_help_widget_contact_submitted', function($name, $email, $subject, $message) {
// ...
} );