Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to set up or change function bp_core_email_from_address_filter()


Boone Gorges
Keymaster

@boonebgorges

Like so:

function kriski_custom_from_address( $address ) {
return 'kriski';
}
add_filter( 'bp_core_email_from_address_filter', 'kriski_custom_from_address' );

That should turn the from address to ‘kriski@yourdomain.com’.

Skip to toolbar