// Change default email subject
add_filter( 'wpex_social_share_data_email_subject', function ( $subject ) {
$subject = 'My custom subject';
return $subject;
} );
// Change default email body text
add_filter( 'wpex_social_share_data_email_body', function ( $body ) {
$body = 'My custom email body text';
return $body;
} );
Snippets: Custom Social Share Email Settings
All PHP snippets should be added via a child theme's functions.php file or via the Code Snippets Plugin (or alternative plugin)