jaykay12 / jaykay12.github.io

This Repository hosts the source code of my personal portfolio website.
https://jaykay12.github.io
2 stars 8 forks source link

Sending email in static webpages #15

Closed meetanubhav closed 6 years ago

meetanubhav commented 6 years ago

4

Yes it is possible using https;//freespree.io They provide with this feature of sending emails in static hosted web pages.

<!DOCTYPE html>
<html>
<head></head>
<body>
        <form action="https://formspree.io/your@email.com"
      method="POST">
    Message<input type="text" name="name">
    <br>
    To:<input type="email" name="_replyto">
    <input type="submit" value="Send">
</form>
</body>
</html> 

@jaykay12

jaykay12 commented 6 years ago

Yes @meetanubhav I just configured my mailing system using formspree.io as suggested by you. Thanks again. Happy hacking :octocat: