0
After creating an email section on the website.. What should I do in other to receive emails from my website ?
Linking my website to my email address
2 Respuestas
+ 2
<input type="email" name="inputEmailName">
To receive it need be surrounded inside <form action="OtherPage" mehord="POST"> tag
My favorit simples way to receive is php.
OtherPage.php
<?php
$email = POST['inputEmailName'];
?>
+ 1
Thank you