summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source
diff options
context:
space:
mode:
authorPetr Heralecky <petr@heralecky.cz>2014-01-10 16:50:49 +0100
committerPetr Heralecky <petr@heralecky.cz>2014-01-10 16:50:49 +0100
commit63f07cbd62ba885f003995dc7ad74bbdb28942c9 (patch)
tree7f610799eabba5eea904bcbb129dca6afa08fec0 /user_guide_src/source
parentceb03af631c145d0694ef6f72e84517e18b7b092 (diff)
documentation repairs
Diffstat (limited to 'user_guide_src/source')
-rw-r--r--user_guide_src/source/changelog.rst2
-rw-r--r--user_guide_src/source/libraries/email.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/changelog.rst b/user_guide_src/source/changelog.rst
index cb70627d4..07dee5dbd 100644
--- a/user_guide_src/source/changelog.rst
+++ b/user_guide_src/source/changelog.rst
@@ -334,7 +334,7 @@ Release Date: Not Released
- Added a custom filename parameter to ``attach()`` as ``$this->email->attach($filename, $disposition, $newname)``.
- Added possibility to send attachment as buffer string in ``attach()`` as ``$this->email->attach($buffer, $disposition, $newname, $mime)``.
- - Added possibility attach remote file by absolute url
+ - Added possibility to attach remote files by passing a URL.
- Added method ``attachment_cid()`` to enable embedding inline attachments into HTML.
- Added dsn (delivery status notification) option.
- Renamed method ``_set_header()`` to ``set_header()`` and made it public to enable adding custom headers.
diff --git a/user_guide_src/source/libraries/email.rst b/user_guide_src/source/libraries/email.rst
index 476f1131d..86f440a74 100644
--- a/user_guide_src/source/libraries/email.rst
+++ b/user_guide_src/source/libraries/email.rst
@@ -259,7 +259,7 @@ otherwise use a custom disposition::
$this->email->attach('image.jpg', 'inline');
-You can use absolute url::
+You can use URL::
$this->email->attach('http://example.com/filename.pdf');