
Code: Zaznacz cały
<?php
1 $to='email@gmail.com';
2 $tytul="Nowy członek Libertagia :) ";
3 $imie=$_GET['imie'];
4 $email=$_GET['email'];
5 $from=$_GET['email'];
6 $headers = 'From: ' . $_GET['email'] . "\r\n" .
7 'Content-type: text/html; charset=utf-8';
8 mail($to,$tytul,$imie,$email,$from,$headers);
?>