From 74a20efdfc2e9184d84a4052f1d7772b48fb1347 Mon Sep 17 00:00:00 2001 From: Justin Cherniak Date: Wed, 25 Jun 2014 13:11:32 -0700 Subject: [PATCH] Add getters for emails --- YiiMailer.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/YiiMailer.php b/YiiMailer.php index b187985..ca89f9e 100644 --- a/YiiMailer.php +++ b/YiiMailer.php @@ -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; + } }