summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries/email.rst
diff options
context:
space:
mode:
authorMelounek <petr@heralecky.cz>2012-06-29 08:43:47 +0200
committerMelounek <petr@heralecky.cz>2012-06-29 08:43:47 +0200
commit58dfc089bf5b0ca35c2ff244e5bfdff726f9adcd (patch)
tree10746fada189e9839406f6eb1a1fcd4f31496be2 /user_guide_src/source/libraries/email.rst
parentffe7938b8d6dfdbdac8a34008dbbb15d31de6080 (diff)
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 f99eb91df..8d2549d11 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()
-------------------------