Created
November 4, 2020 15:28
-
-
Save marktenney/b22d945bdc5759b908609e7e56c72f9d to your computer and use it in GitHub Desktop.
This file contains 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 | |
add_filter( 'um_default_settings_values', 'change_um_defaults', 10, 1 ); | |
function change_um_defaults( $settings ) { | |
// Set default emaiil sender here | |
$settings = array ( | |
'mail_from_addr' => '[email protected]', | |
'mail_from' => 'Digital Church Platform', | |
); | |
return $settings; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment