setEmail($email); } } /** * Sets the email address for the condition. * * @param string $email */ public function setEmail($email) { $this->email = $email; } /** * Converts the condition to a string that can be sent to the IMAP server. * * @return string. */ public function __toString() { return $this->getKeyword() . ' "' . $this->email . '"'; } }