From 47ea4af68c1e33645a2e04b1526e99bd8b50c982 Mon Sep 17 00:00:00 2001 From: Rick Ellis Date: Wed, 13 Jun 2007 21:56:12 +0000 Subject: --- user_guide/libraries/email.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'user_guide/libraries/email.html') diff --git a/user_guide/libraries/email.html b/user_guide/libraries/email.html index 244320534..af243db8d 100644 --- a/user_guide/libraries/email.html +++ b/user_guide/libraries/email.html @@ -193,9 +193,9 @@ will NOT need to use the $this->email->initialize() function if you s

Sets the email address(s) of the recipient(s). Can be a single email, a comma-delimited list or an array:

$this->email->to('someone@some-site.com'); -$this->email->to('one@some-site.com, two@some-site.com, three@some-site.com'); +$this->email->to('one@some-site.com', 'two@some-site.com', 'three@some-site.com'); -$list = array('one@some-site.com, two@some-site.com, three@some-site.com');

+$list = array('one@some-site.com', 'two@some-site.com', 'three@some-site.com');

$this->email->to($list);

$this->email->cc()

-- cgit v1.2.3-24-g4f1b