Last active
August 29, 2015 14:24
-
-
Save wpweb101/91075f6220729d9b31be to your computer and use it in GitHub Desktop.
Follow My Blog Post - Server To Email issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Note : If you still do not get mail then please write any email id instead of '$fromemail' | |
| // Please add the below code to your theme functions file. | |
| function wpw_fp_set_email_to( $email, $fromemail ) { | |
| $email = $fromemail; // any custom email id, if you do not getting any mail | |
| return $email; | |
| } | |
| add_filter( 'wpw_fp_blank_email_to', 'wpw_fp_set_email_to', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment