Hello, I am using Radsystem 8.7.0 with Laravel and Bootstrap. I want to send an email from page events. But I want to make a line break and I have tried \n, and none of the options work.
This is the code, and i want to make a break line in $message.
private function afterAdd($record){
try{
$subject = “Reservación”;
$message = “Usted a reservado una sesión fotográfica con los siguientes detalles:” . ‘\n’. 'Cliente: ’ . $record->cliente . ‘\n’ .
"Tipo de Evento: " . $record->tipevento;
$receiver = $record->clientmail;
$this->sendRecordActionMail($receiver, $subject, $message);
}
catch(Exception $ex){
throw $ex;
}
}
<br />
you do not wrap it, you just add it as a br its self closing,
and for it to break, consider adding a html template, otherwise the body wont recognize you want html vreaks when there is no html! add a html template to it