Change wordpress@yourdomain.com


WordPress sends us e-mails when a visitor registers or sends a comment. “From section” of the e-mail is ‘wordpress@yourdomain.com’. If you change this, add the following codes into your “Theme functions” (functions.php) file and change return values:

function change_mail( $mail ) {
return "yourname@yoursite.com"; //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.

Incoming search terms for the article:

No Comments

(Required)
(Required, will not be published)

Copyright © 2010 Uji Baskoro™.