You are here: Home » All Posts » Email Forms

Email Forms

Send form submissions to email – no coding required!

It is a common requirement to attach a form to a web site and get the form submissions by email. To do this, you need the following at a minimum: The HTML form A server side script that receives the form submissions and sends the email. (written in PHP, Perl etc) TheĀ ‘form to email’ page [...]

Read the full article →

How to create PHP based email form with file attachment

This article shows you how to create a PHP based email form that supports file attachment. The article will also show you how to validate the type and size of the uploaded file. Note: It is easy to create complete file upload forms using Simfatic Forms. Visually design the form, get form submissions by email, [...]

Read the full article →

PHP form to email explained

It is a common requirement to have a form on almost any web site. In this article, we will create a PHP script that will send an email when a web form is submitted. There are two parts for the web form: The HTML form code for the form. The HTML code below displays a [...]

Read the full article →

Sending form submissions to email using ‘mailto:’

The simplest method to get the form submissions posted to you via email is by using “mailto:” in the action field of the form. However, this method has many drawbacks. First let us see how we can use ‘mailto’ in a form.

Read the full article →

Why is my PHP script not sending emails?

It has happened too often to me to get stuck with a ‘form to email’ script. Everything appears right but the email sent by the script never reaches the destination address. This article takes you through the steps to troubleshoot the problem.

Read the full article →