API16:JMailHelper/cleanAddress
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Verifies that an e-mail address does not have any extra headers injected into it.
Description:JMailHelper/cleanAddress
Syntax
static cleanAddress($address)
| Parameter Name | Default Value | Description |
|---|---|---|
| $address | $address E-Mail address. |
Returns
string|false E-Mail address string or boolean false if injected headers are present.
Defined in
libraries/joomla/mail/helper.php
Importing
jimport( 'joomla.mail.helper' );
Source Body
public static function cleanAddress($address) { if (preg_match("[\s;,]", $address)) { return false; } return $address; }
[Edit See Also] SeeAlso:JMailHelper/cleanAddress
Examples
<CodeExamplesForm />
