Description #
This filter checks if the email will be sent as plain HTML.
apply_filters('fluentform/send_plain_html_email', $isSendAsPlain, $form, $notification);
Usage #
add_filter('fluentform/send_plain_html_email', function ($isSendAsPlain, $form, $notification) {
return false;
}, 10, 3);
Parameters #
- $isSendAsPlain (boolean) Status
- $form (array) Field Object
- $notification (array) Notification Data
Placement #
This code should be placed in the functions.php file of your active theme.
Source Code #
This filter is located in FluentForm\app\Services\FormBuilder\Notifications\EmailNotifications -> notify($notification, $submittedData, $form, $entryId = false)