2021-04-26 10:28:44 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$email = $_GET["email"];
|
|
|
|
$lang = "da";
|
|
|
|
|
2021-04-26 14:52:39 +00:00
|
|
|
$to = "rama-testulovliglogning@malver.dk";
|
2021-04-26 10:28:44 +00:00
|
|
|
$subject = "signup";
|
|
|
|
$body = "email: ".$email."\nlang: ".$lang;
|
2021-04-26 14:52:39 +00:00
|
|
|
// Report all PHP errors
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
|
2021-04-26 10:28:44 +00:00
|
|
|
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();
|
|
|
|
?>
|