From 187a1f6f30cc0eb2907e659892cf9ed34390dd4f Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Tue, 17 Mar 2009 20:20:08 +0000 Subject: [PATCH] MINOR documentation git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@73232 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- email/Email.php | 3 +++ email/Mailer.php | 24 ++++++++++++------------ 2 files changed, 15 insertions(+), 12 deletions(-) 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 @@