Posts by Vitor R • 11 points
2 posts
-
1
votes1
answer108
viewsA: Email Body Image - Code Igniter
Documentation: $cid = $this->email->attachment_cid($filename); $this->email->message('<img src="cid:'. $cid .'" alt="photo1" />'); $this->email->send(); Solved.…
-
0
votes1
answer108
viewsQ: Email Body Image - Code Igniter
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']=…