/**
 * Returns true if the string is email and it is valid, false otherwise.
 *
 * @return bool Returns TRUE on success or FALSE otherwise.
 */
public function isEmail(): bool

Examples

if (Strings::create('awilum@glowy.com')->isEmail()) {
    // do something...
}

Getting Started

Methods