Ticket #3498: 3498.002.diff
File 3498.002.diff, 586 bytes (added by , 13 years ago) |
---|
-
bp-core/bp-core-filters.php
52 52 function bp_core_email_from_address_filter() { 53 53 $domain = (array) explode( '/', site_url() ); 54 54 55 return apply_filters( 'bp_core_email_from_address_filter', __( 'noreply', 'buddypress' ) . '@' . $domain[2] );55 return apply_filters( 'bp_core_email_from_address_filter', 'noreply@' . $domain[2] ); 56 56 } 57 57 add_filter( 'wp_mail_from', 'bp_core_email_from_address_filter' ); 58 58