Add Mailgun integration (incoming emails)

This commit is contained in:
Frederic Guillot
2015-04-19 16:01:41 -04:00
parent 392133d9ba
commit ac86c3100a
27 changed files with 255 additions and 3 deletions

View File

@@ -68,6 +68,10 @@ class Project extends Base
*/
public function getByIdentifier($identifier)
{
if (empty($identifier)) {
return false;
}
return $this->db->table(self::TABLE)->eq('identifier', strtoupper($identifier))->findOne();
}