

==Description==

The <b>"gwolle_gb_mail_moderators_body"</b> filter is used to set the body for the moderator notification email.

You can use this filter as:

<code><?php add_filter( 'gwolle_gb_mail_moderators_body', 'filter_function_name' ) ?></code>

Where 'filter_function_name' is the function WordPress should call when the filter is being used.

'''filter_function_name''' should be a unique function name. It cannot match any other function name already declared.


==Examples==


function my_gwolle_gb_mail_moderators_body( $body, $entry ) {
	// this is the default;
	$body = esc_html__("
Hello,

There is a new guestbook entry at '%blog_name%'.
You can check it at %entry_management_url%.

Have a nice day.
Your Gwolle-GB-Mailer


Website address: %blog_url%
User name: %user_name%
User email: %user_email%
Entry status: %status%
Entry content:
%entry_content%
"
, 'gwolle-gb');

	return $body;
}
add_filter( 'gwolle_gb_mail_moderators_body', 'my_gwolle_gb_mail_moderators_body', 10 ,2 );

