Send signed email using an image

5

Hello! I have a function in a file of a website in wordpress that triggers a confirmation email when a person fills out a form. But I would like to put a picture as a signature for this email. but when I include an html img of the conflict and the stick on the site. How could I include this image in this php file?

The function of the message follows.

/* ==== E-mail Cliente ============================= */
/* Assunto que será exibido no e-mail enviado para o cliente */
$assuntoCliente = "Registro de Interesse em Curso";
/* Mensagem que será exibida para o cliente no e-mail enviado, no formato HTML     */
$mensagemCliente = "<html><body>Olá! <p>Agradecemos seu interesse em estudar          na Sustentare. Recebemos a sua inscrição.<p>Enviaremos em breve as informações necessárias para a efetivação de sua matrícula.<p>Consulte o programa de todos os cursos clicando aqui.. http://www.sustentare.net/site/my-mba/<p>Caso tenha alguma dúvida estou à disposição. <p><span style='font-weight: bold; color: #0e3178;'>Renata Giongo Rigato</span><br> [email protected] <br> <br> site.com.br</body></html>";
    
asked by anonymous 24.03.2015 / 21:45

1 answer

0

Image can be added in html and hosted on company website, making it easy to develop

so <img src=\"ass-renata.png\">

you need to put the full url of the image

    
26.03.2015 / 18:50