diff options
author | Derek Allard <derek.allard@ellislab.com> | 2007-01-29 17:00:28 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2007-01-29 17:00:28 +0100 |
commit | 394d0b2d1b5e1633566a3ea56b9dd63118ac7dbf (patch) | |
tree | 817e9c3671472aa7d225dfc58ee181948a7d40c0 /user_guide/libraries | |
parent | b0712d04eee3c2c85c8f10579c31cbc83961b3d6 (diff) |
changed to('$array') into to($array)
Diffstat (limited to 'user_guide/libraries')
-rw-r--r-- | user_guide/libraries/email.html | 4 |
1 files changed, 2 insertions, 2 deletions
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);</code> <p><strong>Note:</strong> Most of the preferences have default values that will be used if you do not set them.</p
-<h3>Setting Email Preferences in a Config File</h3>
+><h3>Setting Email Preferences in a Config File</h3>
<p>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 <var>email.php</var>, add the <var>$config</var>
@@ -196,7 +196,7 @@ will NOT need to use the <dfn>$this->email->initialize()</dfn> function if you s <code>$this->email->to('<var>one@some-site.com</var>, <var>two@some-site.com</var>, <var>three@some-site.com</var>');</code>
<code>$list = array('<var>one@some-site.com</var>, <var>two@some-site.com</var>, <var>three@some-site.com</var>');<br /><br />
-$this->email->to('<var>$list</var>');</code>
+$this->email->to(<var>$list</var>);</code>
<h3>$this->email->cc()</h3>
<p>Sets the CC email address(s). Just like the "to", can be a single email, a comma-delimited list or an array.</p>
|