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.
includes/Core/Mailer.php
Basic Usage
add_filter( 'formcierge_email_from_name', function ( $name, $form_id ) {
return get_bloginfo( 'name' ) . ' Support';
}, 10, 2 );