JSFiddle - React, Tailwind, and code Playground
by MrTest
HTML
<?php
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=ISO-8859-2' . "\r\n";
$mailTo = '[email protected]';
$mailFrom = $_REQUEST['ContactEmail'];
$subject = 'Formularz kontaktowy';
$headers .= 'From:'.$mailFrom. "\r\n";
$body = 'Imie: '.$_REQUEST['ContactName'].'<br />';
$body .= 'E-mail: '.$_REQUEST['ContactEmail'].'<br />';
$body .= 'Telefon: '.$_REQUEST['ContactPhone'].'<br />';
$body .= 'Temat: '.$_REQUEST['ContactSubject'].'<br />';
$body .= 'Wiadomosc: '.$_REQUEST['ContactMessage'].'<br />';
mail($mailTo, $subject, $body, $headers);
?>