BASICO ENVIO DE EMAIL CON PHP


/ Published in: PHP
Save to your folder(s)

Código básico para enviar un email con contenido HTML


Copy this code and paste it in your HTML
  1. $codigohtml = '
  2. <html>
  3. <head>
  4. <title>'.$nombre.' te ha invitado a participar</title>
  5. </head>
  6. <body>
  7. <a href="http://www.tuembarazo.cl/concursos/retratatuespera/" target="_blank">
  8. <img src="http://www.tuembarazo.cl/wp-content/themes/cadabrapress/images/banner/header_concurso_mamas_junio.jpg" width="600" height="100" /><br />
  9. </a>
  10. <span><b>Hola, </b></span><br />
  11. <span>'.$nombre.' te invit&oacute; ha participar en el concurso "Retrata tu espera" <br />
  12. que <a href="http://www.tuembarazo.cl/concursos/" target="_blank">Tu embarazo</a> tiene para ti. <br />
  13. Para participar haz click <a href="http://www.tuembarazo.cl/concursos/retratatuespera/" target="_blank">aqu&iacute;</a> </span>
  14. </body>
  15. </html>
  16. ';
  17.  
  18. $asunto = $nombre . " te ha invitado a participar.";
  19. $cabeceras = "From: ".$nombre."
  20. Content-type: text/html
  21. ";
  22.  
  23. //mando el correo...
  24. //mail("[email protected]","Contacto por Hipoglo.cl",$cuerpo);
  25. mail($email,$asunto,$codigohtml,$cabeceras);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.