This Filter provides access to modify an email content before new user registration notification will be sent to user.
Hook Name: arm_change_verification_email_notification
Hook Type: Filter
Usage:
add_filter( 'arm_change_verification_email_notification', 'your_function');
function your_function($message) {
//$message Email Content
$message .= ' If you have any query, please contact site administrator.';
return $message;
}
Parameters:
$message
Email Content