Description
Filters the email used as 'sender address' in all emails.
Arguments
- $email(string) - The email from which email will be sent.
Return
(string) The sender's email address
Usage
function b3_notification_sender_email( $email ) {
$email = 'email@sender-address.com';
return $email;
}
add_filter( 'b3_notification_sender_email', 'b3_notification_sender_email' );
Used in
- includes/filters-wp.php - line 629