Fix caratteri rimossi dal body per invio newsletter dalle schede

This commit is contained in:
Luca 2022-09-29 10:19:08 +02:00
parent 8d65381243
commit c729ced731
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ elseif (post('op') == 'send-email') {
// Contenuti
$mail->subject = post('subject');
$mail->content = post('body');
$mail->content = $_POST['body']; // post('body', true);
// Conferma di lettura
$mail->read_notify = post('read_notify');