Help folks out when your form fails

Your form has failed, and you’ve shown your visitor an error message asking them to contact you by email. Why not take it a step further and copy the contents of the form into an email message for them? So here’s our form submit code. [php]<?php if (isset($_POST["frmSubmit"])) { if(!isset($_POST["name"]) || !isset($_POST["email"])) { header("Location: registration_sent.php?error=2"); } else { $firstname = …

Guidelines for HTML email’s

This was provided to me by an agency that I was doing some work for, so I take no credit for it. It’s ridiculously thorough and I find myself referring back to it each time I build an email campaign for a client. General Guidelines Use tables for layout Do not use rowspan in tables (see example below). Do not …