mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 23:35:45 +01:00
23 lines
334 B
Markdown
23 lines
334 B
Markdown
# Email
|
|
|
|
- `Email()`
|
|
|
|
Validates an email address.
|
|
|
|
```php
|
|
v::email()->validate('alexandre@gaigalas.net'); // true
|
|
```
|
|
|
|
## Changelog
|
|
|
|
Version | Description
|
|
--------|-------------
|
|
0.9.0 | Use "egulias/emailvalidator" for email validation
|
|
0.3.9 | Created
|
|
|
|
***
|
|
See also:
|
|
|
|
- [Phone](Phone.md)
|
|
- [Url](Url.md)
|
|
- [VideoUrl](VideoUrl.md)
|