<?php
$email = $_POST['email'];
$adresdo = "blabla@przyklad.com";
$adresod = "serwer@przyklad.com";
$temat = "zdanie ze strony www";
$kontener = "Adres poczty elektronicznej: " . $email . "\n";
//funkcja mail z wiadomoscia
mail($adresdo, $temat, $kontener, $adresod);
?>
<html>
<head>
<title>przyjeto maila</title>
</head>
<body>
<h1>Udalo sie wyslac</h1>
</body>
</html>
Daj pomogl jesli dziala, btw. pisalem z pamieci wiec moga byc bledy w sredniakch albo niedomknieciem klamr

edit: ok poprawiłem błąd. chyba już powinno działać.
www.php.net tam amsz też taki:
<?php
// kilku odbiorców
$to = 'aidan@example.com' . ', '; // zwróćmy uwagę na przecinek
$to .= 'wez@example.com';
// temat
$subject = 'Birthday Reminders for August';
// wiadomość
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>
';
// Aby wysłać e-mail HTML, musi być ustawiony nagłówek Content-type
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Dodatkowe nagłówki
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";
// Wysłanie e-maila
mail($to, $subject, $message, $headers); ?>
http://pl.php.net/manual/pl/function.mail.php