1
I have a contact form, simple and I would like the person to send the message, if successful, appeared a popup saying that the message was sent.
How could I do that?
To help I’ll put part of the code PHP
here:
[..]
$header = implode("\r\n", $headers);
if (mail($to, $subject, $message, $header)) {
echo "concluido";
}
?>
If my answer helped you, you can mark it as accepted :)
– Diego