summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries/email.rst
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-10-05 16:08:20 +0200
committerAndrey Andreev <narf@bofh.bg>2012-10-05 16:08:20 +0200
commit66bf2c7dc4921681708630305eb2b1c2cd7d7670 (patch)
treebeadfc2c3bec632c3e77de29847a12920f2994cd /user_guide_src/source/libraries/email.rst
parent1194ad733135214e9905123258df3600b01735fd (diff)
parentcc7c7c691ad16beb5040a8a1d07064e61b5e2167 (diff)
Merge pull request #1586 from melounek/email_return_path
added parameter for returned-path in Email::from()
Diffstat (limited to 'user_guide_src/source/libraries/email.rst')
-rw-r--r--user_guide_src/source/libraries/email.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/user_guide_src/source/libraries/email.rst b/user_guide_src/source/libraries/email.rst
index 4403079b6..fc324ffc9 100644
--- a/user_guide_src/source/libraries/email.rst
+++ b/user_guide_src/source/libraries/email.rst
@@ -117,6 +117,13 @@ Sets the email address and name of the person sending the email::
$this->email->from('you@example.com', 'Your Name');
+::
+
+ $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').
+
$this->email->reply_to()
-------------------------