i have configured postfix and i currently hosted my site in ubuntu, nginx and i have installed sendmail as well as i am completly new to this i would highly appreciate any detailed information about wheather i have to install any other services and change any configurations.thank you in advance
<?php
if(isset($_POST['submit'])) {
$name = $_POST['username'];
$email = $_POST['email'];
$number = $_POST['phone'];
$profession = $_POST['profession'];
$to = 'saiviharj@gmail.com';
$subject = 'user registration';
$phone = "phone number:".$number;
$message = "client details:"."\n"."Name:".$name."\n"."email:".$email."\n"."phone number:".$number."\n"."profession:".$profession;
$headers = "From:".$email;
if(mail($to, $subject, $message, $headers)) {
header("Location: ../../thankyouNew.html");
} else {
header("Location: ../../somethingWrong.html");
}
}
?>