Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: user_request_action_email_content

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
4711       *
4712       *     @type WP_User_Request $request     User request object.
4713       *     @type string          $email       The email address this is being sent to.
4714       *     @type string          $description Description of the action being performed so the user knows what the email is for.
4715       *     @type string          $confirm_url The link to click on to confirm the account action.
4716       *     @type string          $sitename    The site name sending the mail.
4717       *     @type string          $siteurl     The site URL sending the mail.
4718       * }
4719       */
4720      $content = apply_filters( 'user_request_action_email_content', $content, $email_data );
4721
4722      $content = str_replace( '###DESCRIPTION###', $email_data['description'], $content );
4723      $content = str_replace( '###CONFIRM_URL###', esc_url_raw( $email_data['confirm_url'] ), $content );
4724      $content = str_replace( '###EMAIL###', $email_data['email'], $content );
4725      $content = str_replace( '###SITENAME###', $email_data['sitename'], $content );
4726      $content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content );
4727
4728      $headers = '';
4729