I am trying to make a landing page and collect e-mail addresses from users.
First, I want to save e-mail addresses to a .txt file and I found an AJAX script, but the .txt file remains empty.
I then tried to write a php script to send an e-mail but it did not work.
I put my files on a free host, but cannot to send mails.
Here is my code !
HTML :
<form name="input" action="email.php" method="post">
<input type="text" name="email" placeholder="e-mail">
<input type="submit" name="submit" value="submit" id="submit" />
PHP :
<?php
$to = "my.email.adres@example.com";
$subject = "Hi!";
$body = "Send me info on :".$_POST["email"];
mail($to, $subject, $body);
?>