Contact Form On Free Account

http://daystarbible.epizy.com/contact.php

I am using a template with a very simple contact form that I can’t get to work. Can a free account use a contact form?

Hello there,

Yes a free account is allowed to use a Contact form, it should work fine just also make sure you are using SMTP and not PHP mail() to send the contact form submissions to your mailbox, if it doesn’t work there’s a chance that you just didn’t properly configured the code of the contact form of your theme or you’re using PHP mail() and you didn’t receive submissions.

You can use formspree.io to forward and send your contact form submissions with your existing PHP contact form which works amazing for me, you will have to do some tweakings with your code though but don’t worry they will provide you some guide and an example code like this:

<form action="https://formspree.io/yourformspreeID" method="POST">
  <input type="text" name="name">
  <input type="email" name="_replyto">
  <input type="submit" value="Send">
</form>
8 Likes

In addition to what @UnknownLolz said, you can also send email using an SMTP service of your choice by using

We have an example contact form with PHPMailer, Gmail and reCAPTCHA you can use here: GitHub - InfinityFreeHosting/contactform: Simple contact form with PHPMailer

4 Likes

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.