25 lines
578 B
PHP
25 lines
578 B
PHP
<?php
|
|
|
|
$email = $_GET["email"];
|
|
$lang = "da";
|
|
|
|
$to = "ulovliglogning@protonmail.com";
|
|
$subject = "signup";
|
|
$body = "email: ".$email."\nlang: ".$lang;
|
|
if (mail($to, $subject, $body)) {
|
|
if ($lang == "da") {
|
|
$redirect = "https://ulovliglogning.dk/redirect/success/";
|
|
} else {
|
|
$redirect = "https://ulovliglogning.dk/".$lang."/redirect/success/";
|
|
}
|
|
} else {
|
|
if ($lang == "da") {
|
|
$redirect = "https://ulovliglogning.dk/redirect/fail/";
|
|
} else {
|
|
$redirect = "https://ulovliglogning.dk/".$lang."/redirect/fail/";
|
|
}
|
|
}
|
|
|
|
# header('Location: '.$redirect);
|
|
# die();
|
|
?>
|