for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ddeboer\Imap\Search\Email;
/**
* Represents a "From" email address condition. Messages must have been sent
* from the specified email address in order to match the condition.
*/
class FromAddress extends AbstractEmail
{
* Returns the keyword that the condition represents.
*
* @return string
public function getKeyword()
return 'FROM';
}