From 394d0b2d1b5e1633566a3ea56b9dd63118ac7dbf Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Mon, 29 Jan 2007 16:00:28 +0000 Subject: changed to('$array') into to($array) --- user_guide/libraries/email.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'user_guide') diff --git a/user_guide/libraries/email.html b/user_guide/libraries/email.html index 0ce1813cf..d794d140e 100644 --- a/user_guide/libraries/email.html +++ b/user_guide/libraries/email.html @@ -119,7 +119,7 @@ $this->email->initialize($config);

Note: Most of the preferences have default values that will be used if you do not set them.

Setting Email Preferences in a Config File +>

Setting Email Preferences in a Config File

If you prefer not to set preferences using the above method, you can instead put them into a config file. Simply create a new file called the email.php, add the $config @@ -196,7 +196,7 @@ will NOT need to use the $this->email->initialize() function if you s $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');

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

$this->email->cc()

Sets the CC email address(s). Just like the "to", can be a single email, a comma-delimited list or an array.

-- cgit v1.2.3-24-g4f1b