diff --git a/src/Postmark/Mail.php b/src/Postmark/Mail.php index dd3b89b..340292e 100755 --- a/src/Postmark/Mail.php +++ b/src/Postmark/Mail.php @@ -364,6 +364,20 @@ public function send($options = array()) return true; } + /** + * Resets recipients for an email to allow this reference to be used more + * than once + * + * @param string $subject E-mail subject + * @return Mail + */ + public function reset() + { + $this->_to = array(); + $this->_cc = array(); + $this->_bcc = array(); + } + /** * Specify subject *