diff options
author | Petr Heralecky <petr@heralecky.cz> | 2014-01-10 12:52:56 +0100 |
---|---|---|
committer | Petr Heralecky <petr@heralecky.cz> | 2014-01-10 12:52:56 +0100 |
commit | de88615b7245f00d086d97a9fb5ea8b307d34c4f (patch) | |
tree | 1229b47a900839839512bda8e72ba8ed06d77e68 /user_guide_src/source/libraries | |
parent | 300e3f04404e771de89351e410699e447759175a (diff) |
styleguided
Diffstat (limited to 'user_guide_src/source/libraries')
-rw-r--r-- | user_guide_src/source/libraries/email.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/user_guide_src/source/libraries/email.rst b/user_guide_src/source/libraries/email.rst index 90b71142b..274d88d46 100644 --- a/user_guide_src/source/libraries/email.rst +++ b/user_guide_src/source/libraries/email.rst @@ -277,15 +277,15 @@ $this->email->attach_cid() :: - $filename = '/img/photo1.jpg'; - $this->email->attach($filename); - foreach ($list as $address) - { - $this->email->to($address); - $cid = $this->email->attach_cid($filename); - $this->email->message('<img src='cid:". $cid ."' alt="photo1" />'); - $this->email->send(); - } + $filename = '/img/photo1.jpg'; + $this->email->attach($filename); + foreach ($list as $address) + { + $this->email->to($address); + $cid = $this->email->attach_cid($filename); + $this->email->message('<img src='cid:". $cid ."' alt="photo1" />'); + $this->email->send(); + } CID for each Email have to be create again to be unique. |