mha!
nella pagina php che riceve al submit ho messo:
codice:
<?php
require("phpmailerclass\class.phpmailer.php");
$mail = new PHPMailer();
$mail->From = "mio indirizzo@aaa.it";
$mail->FromName = "mio from";
$mail->Host = "smtp.aruba.it";
$mail->Mailer = "smtp";
$mail->Body = $elm1;
$mail->AltBody = "prova alt";
$mail->AddAddress("mioindirizzo@hotmail.it", "");
if(!$mail->Send())
echo "There has been a mail error sending to " . "
";
else echo "mail sent to " . "
";
$mail->ClearAddresses();
?>
elm1 è il nome della <textarea> che usa Tinymce Editor...quindi con $elm1 prendo l'html !
nella casella di posta anzichè vedere l'html della tabella, dei font e dei colori , quindi la mail in formato html, vedo solo il testo dell'html