<?php $email = ""; $subject = "Подтверждение регистрации:"; $headers = "From: <>" . "\r\n" . "Reply-To: "; $message = ' <html> <head> <title>Birthday Reminders for August</title> </head> <body> <p>Here are the birthdays upcoming in August!</p> </body> </html>'; mail($email, $subject . " (lancar)", $message, $headers); ?>