<?php
// Function to change sender email
function wpb_sender_email( $original_email_address ) {
return 'new@email.com';
}
// Function to change sender name
function wpb_sender_name( $original_email_from ) {
return 'New Sender 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' );
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.