WordPress in the reply’s sender
-
Hi …
if you have a problem with “WordPress in the reply’s sender”make a mu-plugin:
<?php /* MU Plugin: Function to change sender email address Description: Enlever le nom wordpress et a la place celui du site faire le changement ci dessous Version1: 08 09 2015 */ // Function to change email address function wpb_sender_email( $original_email_address ) { return 'YOUR EMAIL'; } // Function to change sender name function wpb_sender_name( $original_email_from ) { return 'YOUR NAME'; } // Hooking up our functions to WordPress filters add_filter( 'wp_mail_from', 'wpb_sender_email' ); add_filter( 'wp_mail_from_name', 'wpb_sender_name' ); ?>
thats all…
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘WordPress in the reply’s sender’ is closed to new replies.