CakePHP email sending with photo -


i have cakephp project , wants send email photo using cakephp email. sending email fine , photo not printed inside body.i giving full url of image. code sample below:

i not find out proper way send image email.

<td style="text-align: right;">   <img alt="" width="120" height="120" src="http://localhost/lictors/app/webroot/img/lict/passport_copy.jpg">   </td> 

first have attach image this:

$email->attachments([     'photo.png' => [         'file' => '/full/some_hash.png',         'mimetype' => 'image/png',         'contentid' => 'my-unique-id'     ] ]); 

after refer contentid int img src, this:

<img src="cid:my-unique-id"> 

Comments

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -