![]() |
Email como enviar mensagem html com imagem - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1) +--- Forum: Regional User Groups (https://forum.codeigniter.com/forumdisplay.php?fid=25) +--- Thread: Email como enviar mensagem html com imagem (/showthread.php?tid=69253) |
Email como enviar mensagem html com imagem - Eduardo Faria - 10-27-2017 Ola pessoal, Quero enviar email com mensagem html contendo uma imagem (por exemplo um logo), como faço? ![]() RE: Email como enviar mensagem html com imagem - InsiteFX - 10-27-2017 You have to have the image on a live server and use inline html styles to load it from the server. RE: Email como enviar mensagem html com imagem - Eduardo Faria - 10-27-2017 (10-27-2017, 08:59 AM)InsiteFX Wrote: You have to have the image on a live server and use inline html styles to load it from the server. Obrigado InsiteFX pela resposta, você teria como passar mais detalhes, minha tag html está assim no corpo da mensagem: <img src="<?php echo base_url('pasta/imagem.png'); ?>"> RE: Email como enviar mensagem html com imagem - rodrigoprazim - 10-27-2017 (10-27-2017, 09:09 AM)Eduardo Faria Wrote:(10-27-2017, 08:59 AM)InsiteFX Wrote: You have to have the image on a live server and use inline html styles to load it from the server. Errado, você teria que usar um servidor externo para hospedar as imagens ou envia-las via BLOB RE: Email como enviar mensagem html com imagem - Eduardo Faria - 10-27-2017 (10-27-2017, 09:30 AM)rodrigoprazim Wrote:(10-27-2017, 09:09 AM)Eduardo Faria Wrote:(10-27-2017, 08:59 AM)InsiteFX Wrote: You have to have the image on a live server and use inline html styles to load it from the server. Obrigado a todos, testei o site hospedado e funcionou... um problema que tinha era que é case sensitive e algumas imagens estavam com a extensão .PNG e não eram encontradas. |