Promo domain murah netfirms mengecewakan?
April 18, 2010WP 3.0 Error: Briefly unavailable for scheduled maintenance
July 3, 2010
WordPress sends us e-mails when a visitor registers or sends a comment. “From section” of the e-mail is ‘[email protected]’. If you change this, add the following codes into your “Theme functions” (functions.php) file and change return values:
function change_mail( $mail ) {
return "[email protected]"; //change as you want
}
function change_sender ( $sendername ) {
return "Your Name"; //change as you want
}
add_filter('wp_mail_from','change_mail',1);
add_filter('wp_mail_from_name','change_sender',1);
If you don’t do this, you can use wp-mailfrom plugin.