Guest User

Untitled

a guest
Mar 21st, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. $email_body ="Nombre: ".$first_name."Apellido:"
  2. .$last_name."Portal:".$portal."Piso: ".$piso."Email: ".$email."Telefono:"
  3. .$phone."Incidencia:"
  4. .$incidencia."Mensaje: ".$message.".";
  5.  
  6. Nombre:
  7. Apellido:
  8.  
  9. $email_body ="Nombre: ".$first_name."<br>Apellido: "
  10. .$last_name."<br>Portal :".$portal."<br>Piso: ".$piso."<br>Email:
  11. ".$email."<br>Telefono: "
  12. .$phone."<br>Incidencia: "
  13. .$incidencia."<br>Mensaje: ".$message.".";
  14.  
  15. $email_body[] = '';
  16. $email_body = "Nombre: ".$first_name;
  17. $email_body = "Apellido: ".$last_name;
  18. $email_body = "Portal :".$portal;
  19. ...
  20.  
  21. foreach ( $email_body as $one ) { echo "<p>$one</p>"; }
Add Comment
Please, Sign In to add comment