diff --git a/email/Email.php b/email/Email.php index 1bf8773cf..86e72d306 100755 --- a/email/Email.php +++ b/email/Email.php @@ -233,6 +233,9 @@ class Email extends ViewableData { /** * Add a custom header to this value. * Useful for implementing all those cool features that we didn't think of. + * + * @param string $headerName + * @param string $headerValue */ public function addCustomHeader($headerName, $headerValue) { if($headerName == 'Cc') $this->cc = $headerValue; diff --git a/email/Mailer.php b/email/Mailer.php index 456fcd1d6..1b0e451c3 100644 --- a/email/Mailer.php +++ b/email/Mailer.php @@ -1,21 +1,21 @@