Skip to content

Instantly share code, notes, and snippets.

@anthonysbrown
Created February 16, 2017 18:23
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save anthonysbrown/a92991fd2e54c5961bada9ce42ab3ef3 to your computer and use it in GitHub Desktop.
Change the from address in SP Client document manager
<?php
add_filter('sp_cdm/mail/admin_email','cdm_admin_email', 20);
function cdm_admin_email($email){
$email = 'noreply@example.com';
return $email;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment