formcierge_email_from_name
Filter

Since v1.0.0

Override the From name shown in notification emails.

Parameters
$name string The From name.
$form_id int The form ID.
Defined in
includes/Core/Mailer.php
add_filter( 'formcierge_email_from_name', function ( $name, $form_id ) {
    return get_bloginfo( 'name' ) . ' Support';
}, 10, 2 );