Skip to content

Instantly share code, notes, and snippets.

@ericandrewlewis
Created October 19, 2013 19:37
Show Gist options
  • Save ericandrewlewis/7060497 to your computer and use it in GitHub Desktop.
Save ericandrewlewis/7060497 to your computer and use it in GitHub Desktop.
<?php
/**
* Filter the content of the notification email for new user signup success.
*
* @since MU
*
* @param string $content Content of the notification email.
* @param string $user User login name.
* @param string $user_email User email address.
* @param string $key Activation key created in wpmu_signup_blog().
* @param array $meta By default, contains the requested privacy setting and lang_id.
*/
$message = apply_filters( 'wpmu_signup_user_notification_email',
__( "To activate your user, please click the following link:\n\n%s\n\nAfter you activate, you will receive *another email* with your login." ),
$user, $user_email, $key, $meta
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment