0
I’m having trouble attaching an image to the E-email body using the standard Igniter library.
I’ve done it like this:
$cid = $this->email->attach('media/teste.jpg','inline');
$dados['cid']= $cid;
$emailbody = $this->load>view('proposta/template.php',$dados,true);
$this->email->message($emailbody);
In view:
<img src='cid:<?= $cid?>' alt="photo1" height="42" width="42" />'
In case the attachment happens, but in the view the image in the body does not appear.
Someone can help?
you are setting the image ? $mail->Addattachment
– Otto
or $mail->Addembeddedimage
– Otto