Rasmus Malver
7e018ae0c6
All checks were successful
continuous-integration/drone/push Build is passing
31 lines
733 B
PHP
31 lines
733 B
PHP
<?php
|
|
|
|
$email = $_GET["email"];
|
|
$lang = "da";
|
|
|
|
$to = "rama-testulovliglogning@malver.dk";
|
|
$subject = "signup";
|
|
$body = "email: ".$email."\nlang: ".$lang;
|
|
// Report all PHP errors
|
|
error_reporting(E_ALL);
|
|
|
|
mail($to, $subject, $body);
|
|
print_r($email);
|
|
|
|
// 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();
|
|
?>
|