BP_Email_Participant::get_address()
Gets the email address of the user.
Description Description
Source Source
File: bp-core/classes/class-bp-email-participant.php
public function get_address() {
/**
* Filters an email user's address before it's returned.
*
* @since 5.0.0
*
* @param string $address User's address.
* @param BP_Email_User $user Current instance of the email user class.
*/
return apply_filters( 'bp_email_user_get_address', $this->address, $this );
}
Changelog Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |