estoy teniendo el error "Unespected T_VARIABLE" cuando intento ponerle el body del email
Código PHP:
$m= new Mail; // create the mail
$m->Content_type("text/html");
$m->From("[email protected]");
$m->To($registro7["email_novio_1"]);
$m->Cc($registro7["email_novio_2"]);
$m->Subject($asunto);
$m->Body($mail_renovacion); // set the body
$m->Priority(1) ; // set the priority to Low
$m->Send(); // send the mail
Código PHP:
include ("plantillas_correo/mailrenovacion.php");
$mail_renovacion=$contenido;
es tal que
Código PHP:
$contenido=<<<EOFSTRING
Mucho codigo html
EOFSTRING;
¿alguien sabe que esta mal?
1 saludo y gracias