Hello I have this kind of variable inside a mail function, but I wuld like to separate the text inside the string with diferent lines:
$email_body = "Dear Client,
Text Title one
Text Title on a new line
";
the final result inside the e-mail shuld be every line inside a new line. right now everything is inside the same line when I perform:
mail($to,$email_subject,$email_body,$headers);