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
Post a Comment