<?PHP function send_email($to, $from, $subject, $text) { $header = "From: ropa Ticketsystem Hilfe\r\n" . "Reply-To: $from\r\n"."X-Mailer: PHP"; mail($to, $subject, $text, $header); } ?>