bbp_subscription_from_email

bbp_subscription_from_email

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_subscription_from_email') is found 2 times:

  • /includes/common/functions.php line 1138
    1134
    1135
    1136
    1137
    1138
    1139
    1140
    1141
    1142
    1143
    1144
    // Get the noreply@ address
    $no_reply   = bbp_get_do_not_reply_address();
     
    // Setup "From" email address
    $from_email = apply_filters( 'bbp_subscription_from_email', $no_reply );
     
    // Setup the From header
    $headers[]  = 'From: ' . get_bloginfo( 'name' ) . ' <' . $from_email . '>';
     
    // Loop through addresses
    foreach ( (array) $email_addresses as $address ) {
  • /includes/common/functions.php line 1305
    1301
    1302
    1303
    1304
    1305
    1306
    1307
    1308
    1309
    1310
    1311
    // Get the noreply@ address
    $no_reply   = bbp_get_do_not_reply_address();
     
    // Setup "From" email address
    $from_email = apply_filters( 'bbp_subscription_from_email', $no_reply );
     
    // Setup the From header
    $headers[] = 'From: ' . get_bloginfo( 'name' ) . ' <' . $from_email . '>';
     
    // Loop through addresses
    foreach ( (array) $email_addresses as $address ) {