summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries/email.rst
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-10-05 16:12:55 +0200
committerAndrey Andreev <narf@bofh.bg>2012-10-05 16:12:55 +0200
commitccd01c75f5802e4e4b74bb53414a58d2aa0fd0d8 (patch)
treea4183e523181584a80c3df7546fe66199dc32ae8 /user_guide_src/source/libraries/email.rst
parent66bf2c7dc4921681708630305eb2b1c2cd7d7670 (diff)
Polish changes from #1586
Diffstat (limited to 'user_guide_src/source/libraries/email.rst')
-rw-r--r--user_guide_src/source/libraries/email.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/user_guide_src/source/libraries/email.rst b/user_guide_src/source/libraries/email.rst
index fc324ffc9..e7ed9f74c 100644
--- a/user_guide_src/source/libraries/email.rst
+++ b/user_guide_src/source/libraries/email.rst
@@ -117,12 +117,12 @@ Sets the email address and name of the person sending the email::
$this->email->from('you@example.com', 'Your Name');
-::
+You can also set a Return-Path, to help redirect undelivered mail::
$this->email->from('you@example.com', 'Your Name', 'returned_emails@example.com');
-Third parameter is redirect for undelivered emails (may not be configured with
-protocol 'smtp').
+.. note:: Return-Path can't be used if you've configured
+ 'smtp' as your protocol.
$this->email->reply_to()
-------------------------