I've got an annoying problem. My website https://exmple.com has a contact form. The logic is placed in the same directory as the send.php file. In general, an email form works, however, sometimes I get "Server not found" error (1/10). What may be to resign for this weird behaviour?
The form looks like:
<form method="post" action="send.php">
...
</form>
I've already tried:
action = "send.php"
action = "/send.php"
action = "https://exmple.com/send.php"
Each try gives the same result.
This is a SSL connection, index.php file is in the same directory as send.php.
Thanks for your help!