Update from in emails
authorSteve Sutton <steve@gaslightmedia.com>
Fri, 23 Feb 2018 18:53:28 +0000 (13:53 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Fri, 23 Feb 2018 18:53:28 +0000 (13:53 -0500)
Update from to forms@wmta.org
Update from name to WMTA

functions.php

index 565c0ab..a4ac536 100644 (file)
@@ -383,4 +383,15 @@ add_filter('is_page', function($page){
        }else {
                return false;
        }
-});
\ No newline at end of file
+});
+/** changing default wordpres email settings */
+
+add_filter('wp_mail_from', 'new_mail_from');
+add_filter('wp_mail_from_name', 'new_mail_from_name');
+
+function new_mail_from($old) {
+ return 'forms@wmta.org';
+}
+function new_mail_from_name($old) {
+ return 'WMTA';
+}