Skip to content

Instantly share code, notes, and snippets.

@dattard21
Last active October 21, 2016 06:41
Show Gist options
  • Save dattard21/8fe47bb976d316416f9f972b67fc8de7 to your computer and use it in GitHub Desktop.
Save dattard21/8fe47bb976d316416f9f972b67fc8de7 to your computer and use it in GitHub Desktop.
function send_bonus_email( $form_id, $user_data, $user_id )
{
global $service_locator;
$firstName = $user_data['first_name'];
$lastName = $user_data['last_name'];
$email_content = "
Hey there $firstName, Welcome to WPMUDEV. "\r\n"
Welcome to the club! As a bit of a thank you for taking the time to sign up, here a couple of bonuses
…"
}
add_action(‘after_signup_user’, ‘send_bonus_email’);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment