$body=""; $body .= " <html><body> <p><b>Имя:</b> $userName</p> <p><b>Email:</b> $userEmail</p> <p><b>Телефон:</b> $phone</p> <p><b>Серийный номер:</b> $serial</p> <p><b>Сообщение:</b> $message</p> "; $body.="</body></html>"; $this->sendMail($from, $fromname, $recipient, $subject, $body, $isHTML = true);
Por favor, Identificarse o Crear cuenta para unirse a la conversación.
$headers = "Content-Type: text/html; charset=UTF-8\r\n"; $isHTML=true; $body = '<html><body>'; $body.='<p><b>Имя:</b>'.$userName.'</p>'; $body.='<p><b>Email:</b>'.$userEmail.'</p>'; $body.='<p><b>Телефон:</b>'.$phone.'</p>'; $body.='<p><b>Серийный номер:</b>'.$serial.'</p>'; $body.='<p><b>Сообщение:</b>'.$message.'</p>'; $body.='</body></html>'; $this->sendMail($from, $fromname, $recipient, $subject, $body, $isHtml, $headers);