Skip to content

Instantly share code, notes, and snippets.

View khelil's full-sized avatar

Khelil khelil

  • Freelance
  • Nantes, FRANCE
  • X @khelil
View GitHub Profile
@khelil
khelil / WP-Custom-Email-Sender.php
Last active November 17, 2017 16:44
Customise WordPress system email sender informations
<?php
// Function to change email sender
function new_sender_email( $original_email_address ) {
return 'hello@custom.com';
}
// Function to change sender name
function new_sender_name( $original_email_from ) {
return 'Custom Name';
}