Skip to content

Commit

Permalink
Add getters for emails
Browse files Browse the repository at this point in the history
  • Loading branch information
jcherniak committed Jun 25, 2014
1 parent cc88fa1 commit 74a20ef
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions YiiMailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -563,4 +563,18 @@ public function save()
}
}

public function getTo()
{
return $this->to;
}

public function getCC()
{
return $this->cc;
}

public function getBcc()
{
return $this->bcc;
}
}

0 comments on commit 74a20ef

Please sign in to comment.