diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-04-22 14:02:43 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-04-22 14:02:43 +0200 |
commit | 7c53be42a74b103774729281aef09ad505f3b611 (patch) | |
tree | dc6dda54c14313e4aa8608f4ec87b85df353d887 /user_guide/libraries | |
parent | 17a711ad54290dcaa649cadd72c694f46cf1098f (diff) |
Added the ability to set CRLF settings via config in the Email class.
Added SVN commit number to changelog
Fixed more guide typos and examples
Diffstat (limited to 'user_guide/libraries')
-rw-r--r-- | user_guide/libraries/email.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/user_guide/libraries/email.html b/user_guide/libraries/email.html index b01453a3a..a93614238 100644 --- a/user_guide/libraries/email.html +++ b/user_guide/libraries/email.html @@ -163,8 +163,16 @@ will NOT need to use the <dfn>$this->email->initialize()</dfn> function if you s <td class="td"><strong>validate</strong></td><td class="td">FALSE</td><td class="td">TRUE or FALSE (boolean)</td><td class="td">Whether to validate the email address.</td>
</tr><tr>
<td class="td"><strong>priority</strong></td><td class="td">3</td><td class="td">1, 2, 3, 4, 5</td><td class="td">Email Priority. 1 = highest. 5 = lowest. 3 = normal.</td>
-</tr><tr>
-<td class="td"><strong>newline</strong></td><td class="td">\n</td><td class="td">"\r\n" or "\n"</td><td class="td">Newline character. (Use "\r\n" to comply with RFC 822).</td>
+</tr>
+<tr>
+ <td class="td"><strong>crlf</strong></td>
+ <td class="td">\n</td>
+ <td class="td">"\r\n" or "\n" or "\r"</td>
+ <td class="td">Newline character. (Use "\r\n" to comply with RFC 822).</td>
+</tr>
+<tr>
+<td class="td"><strong>newline</strong></td><td class="td">\n</td>
+<td class="td">"\r\n" or "\n" or "\r"</td><td class="td">Newline character. (Use "\r\n" to comply with RFC 822).</td>
</tr><tr>
<td class="td"><strong>bcc_batch_mode</strong></td><td class="td">FALSE</td><td class="td">TRUE or FALSE (boolean)</td><td class="td">Enable BCC Batch Mode.</td>
</tr><tr>
|