skip to Main Content

rem_email_sender_title

Skip to main content
< All Articles
Print

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';
}

 

Back To Top