diff options
author | Andrey Andreev <narf@devilix.net> | 2017-06-22 12:40:21 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2017-06-22 12:40:21 +0200 |
commit | 8acd0fa915f61d4e152ce7505646865815b4f458 (patch) | |
tree | 7064d24b7273d348730d00c9ea59b144f3daa707 /user_guide_src/source/libraries/email.rst | |
parent | 56c233fc4a455d33d2e679b59132b8a7a1cf1832 (diff) |
[ci skip] Close #3711
Diffstat (limited to 'user_guide_src/source/libraries/email.rst')
-rw-r--r-- | user_guide_src/source/libraries/email.rst | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/user_guide_src/source/libraries/email.rst b/user_guide_src/source/libraries/email.rst index bd416ba3b..81ca00e50 100644 --- a/user_guide_src/source/libraries/email.rst +++ b/user_guide_src/source/libraries/email.rst @@ -312,14 +312,18 @@ Class Reference This method will automatically clear all parameters if the request was successful. To stop this behaviour pass FALSE:: - if ($this->email->send(FALSE)) - { - // Parameters won't be cleared - } + if ($this->email->send(FALSE)) + { + // Parameters won't be cleared + } .. note:: In order to use the ``print_debugger()`` method, you need to avoid clearing the email parameters. + .. note:: If ``batch_bcc_mode`` is enabled, and there are more than + ``batch_bcc_size`` recipients, this method will always return + boolean ``TRUE``. + .. php:method:: attach($filename[, $disposition = ''[, $newname = NULL[, $mime = '']]]) :param string $filename: File name |