rem_email_sender_title

How Can We Help?

rem_email_sender_title

This filter can be used to change the site title used in From Emails. By default, REM uses WordPress’s site title for sending emails.

Arguments

  1. Site Title [String]

Example

The following code will set the “from email” text as REM Notification. Please paste the following code in your theme’s functions.php file.

add_filter( 'rem_email_sender_title', 'rem_change_title_email', 10, 1 );

function rem_change_title_email($title){
	return 'REM Notification';
}