Answer the question
In order to leave comments, you need to log in
How to make an application come to telegrams and mail?
I tried to make the letters come to the mail and telegrams, but nothing happened. Erase code. Here is the code that sends the email.
<?php
if (!empty($_POST['name']) AND !empty($_POST['email']) AND !empty($_POST['message']))
{
$theme = "Новое сообщение с сайта";
$letter = "Данные сообщения:";
$letter .="\n\n";
$letter .="Имя: ".$_POST['name'];
$letter .="\nEmail: ".$_POST['email'];
$letter .="\nТелефон: ".$_POST['phone'];
$letter .="\nСообщение: ".$_POST['message'];
if (mail("[email protected]", $theme, $letter, $headers)){
header("Location: /testform/thankyou.php");
} else {
header("Location: /testform");
}
} else {
header("Location: /testform");
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question