Skip to content

Instantly share code, notes, and snippets.

@dodyw
Created January 28, 2015 03:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dodyw/fef4af7478d806e57e37 to your computer and use it in GitHub Desktop.
Save dodyw/fef4af7478d806e57e37 to your computer and use it in GitHub Desktop.
<?php
/*
* Plugin Name: My Name Email
* Description: Use custom email From Name
* Plugin URI: http://toscho.de/?p=2201
* Version: 2015.01.28
* Author: Dody Rachmat Wicaksono
* Author URI: http://www.dodyrw.com
* License: GPL
*/
function dd_use_my_email(){
return 'this_is_your_email@domain.com';
}
add_filter( 'wp_mail_from', 'dd_use_my_email' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment