bp_send_email_success
Fires after BuddyPress has succesfully sent an email.
Description
add_action( 'bp_send_email_success', (string) $bp_core_deprecated_email_actions, (int) $int, (int) $int );
Parameters (3)
- 0. $bp_core_deprecated_email_actions (string) =>
'bp_core_deprecated_email_actions'
- The bp core deprecated email actions.
- 1. $int (int) =>
20
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_send_email_success', $bp_core_deprecated_email_actions, $int, $int );
- The following example is for adding a hook callback.
- // define the bp_send_email_success callback
- function action_bp_send_email_success( $bp_core_deprecated_email_actions, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_send_email_success', 'action_bp_send_email_success', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_send_email_success', 'action_bp_send_email_success', 10, 3 );
Defined (2)
The action is defined in the following location(s).
- /bp-core/deprecated/2.5.php
- add_action( 'bp_send_email_success', 'bp_core_deprecated_email_actions', 20, 2 );
- add_action( 'bp_send_email_success', 'bp_core_deprecated_email_actions', 20, 2 );