I am trying to create a landing page and collect email addresses from users.
First, I want to save the email addresses in a TXT file, and I found an AJAX script, but the .txt file remains empty.
Then I tried to write a php script to send an email, but it did not work.
I put my files on a free host, but I can not send letters.
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); ?>
source share