Skip to content

Instantly share code, notes, and snippets.

@marktenney
Created November 4, 2020 15:28
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 marktenney/b22d945bdc5759b908609e7e56c72f9d to your computer and use it in GitHub Desktop.
Save marktenney/b22d945bdc5759b908609e7e56c72f9d to your computer and use it in GitHub Desktop.
<?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' => 'notifications+test@digitalchurchplatform.com',
'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