Function EmailIntegration->find_member_id
Definitions
sources/mail_integration.php
- Find the member for an e-mail address.
- Visibility: protected
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: int
Parameters
Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
---|---|---|---|---|---|---|---|
$from_email | string | No | No | required parameter | N/A | N/A | E-mail address |
Returns
- Member ID (null: none)
- Type: ?MEMBER
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Find the member for an e-mail address.
*
* @param string $from_email E-mail address
* @return ?MEMBER Member ID (null: none)
*/
protected function find_member_id(string $from_email) : ?int
* Find the member for an e-mail address.
*
* @param string $from_email E-mail address
* @return ?MEMBER Member ID (null: none)
*/
protected function find_member_id(string $from_email) : ?int