Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Where is the setting for mail server config?

Since bb_mail() is in pluggable.php, it can be completely replaced by a plugin without having to modify any core files.

I suggest you write your plugin to do that instead of requiring people to modify pluggable.php.

/*
Plugin Name: SMTP PEAR blah
*/

if ( !function_exists( 'bb_mail' ) ) :
function bb_mail() {
// my replacement for bb_mail()
}
endif;

Skip to toolbar