diff --git a/bbp-includes/common/functions.php b/bbp-includes/common/functions.php
index 6a28e80..7e648bf 100644
a
|
b
|
|
970 | 970 | if ( !bbp_is_subscriptions_active() ) |
971 | 971 | return false; |
972 | 972 | |
| 973 | /** Headers ***************************************************************/ |
| 974 | $headers = apply_filters( 'bbp_mail_headers', $headers ); |
| 975 | |
973 | 976 | /** Validation ************************************************************/ |
974 | 977 | |
975 | 978 | $reply_id = bbp_get_reply_id( $reply_id ); |
… |
… |
|
1051 | 1054 | $user = get_userdata( $user_id ); |
1052 | 1055 | |
1053 | 1056 | // Send notification email |
1054 | | wp_mail( $user->user_email, $subject, $message ); |
| 1057 | wp_mail( $user->user_email, $subject, $message, $headers ); |
1055 | 1058 | } |
1056 | 1059 | |
1057 | 1060 | do_action( 'bbp_post_notify_subscribers', $reply_id, $topic_id, $user_ids ); |