bbp_subscription_to_email

bbp_subscription_to_email

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_subscription_to_email') is found 2 times:

  • /includes/common/functions.php line 1152
    1148
    1149
    1150
    1151
    1152
    1153
    1154
    1155
    1156
    1157
    1158
    /** Send it ***************************************************************/
     
    // Custom headers
    $headers  = apply_filters( 'bbp_subscription_mail_headers', $headers  );
    $to_email = apply_filters( 'bbp_subscription_to_email',     $no_reply );
     
    // Before
    do_action( 'bbp_pre_notify_subscribers', $reply_id, $topic_id, $user_ids );
     
    // Send notification email
    wp_mail( $to_email, $subject, $message, $headers );
  • /includes/common/functions.php line 1319
    1315
    1316
    1317
    1318
    1319
    1320
    1321
    1322
    1323
    1324
    1325
    /** Send it ***************************************************************/
     
    // Custom headers
    $headers  = apply_filters( 'bbp_subscription_mail_headers', $headers  );
    $to_email = apply_filters( 'bbp_subscription_to_email',     $no_reply );
     
    // Before
    do_action( 'bbp_pre_notify_forum_subscribers', $topic_id, $forum_id, $user_ids );
     
    // Send notification email
    wp_mail( $to_email, $subject, $message, $headers );