diff --git a/src/Rossedman/Teamwork/Project.php b/src/Rossedman/Teamwork/Project.php index ef822f1..30cadda 100644 --- a/src/Rossedman/Teamwork/Project.php +++ b/src/Rossedman/Teamwork/Project.php @@ -173,5 +173,16 @@ public function tasklists($args = null) return $this->client->get("$this->endpoint/$this->id/tasklists", $args)->response(); } + /** + * Emailaddresses + * GET /projects/{project_id}/emailaddress.json + * + * @return [type] [description] + */ + public function emailAddress($args = null) + { + return $this->client->get("$this->endpoint/$this->id/emailaddress", $args)->response(); + } + }