39 lines
1.0 KiB
PHP
39 lines
1.0 KiB
PHP
<?php
|
|
include 'header.php';
|
|
?>
|
|
|
|
<article>
|
|
Hej
|
|
<strong>
|
|
<?= htmlspecialchars($_POST['nick']); ?>
|
|
</strong>!
|
|
<br><br>
|
|
Otrzymaliśmy twój formularz rejestracji. Oczekuj na dalsze informacje na swojej skrzynce mailowej. :) Odpowiedź może potrwać kilka dni, w zależności od oczekującej liczby użytkowników.
|
|
</article>
|
|
|
|
<?php
|
|
$nick=htmlspecialchars($_POST["nick"]);
|
|
$email=htmlspecialchars($_POST["email"]);
|
|
$url=htmlspecialchars($_POST["url"]);
|
|
$who=htmlspecialchars($_POST["who"]);
|
|
$how=htmlspecialchars($_POST["how"]);
|
|
$interests=htmlspecialchars($_POST["interests"]);
|
|
|
|
$to = 'smoorg@tylda.org';
|
|
$subject = 'Rejestracja usera' . "$nick";
|
|
$message = "Nick: $nick\n" .
|
|
"Email: $email\n" .
|
|
"Url: $url\n" .
|
|
"Opowiedz coś na swój temat: $who\n" .
|
|
"Jak do nas trafiłeś?: $how\n" .
|
|
"Zainteresowania: $interests\n"
|
|
;
|
|
$headers = array(
|
|
'From' => 'noreply@tylda.org',
|
|
'Reply-To' => 'noreply@tylda.org',
|
|
'X-Mailer' => 'PHP/' . phpversion()
|
|
);
|
|
|
|
mail($to, $subject, $message, $headers);
|
|
?>
|