Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Need help with a monthly email update form. Re: Need help with a monthly email update form.

#62922
Chris Coyier
Keymaster

You should point that action URL (and add method="post") to a PHP file with something like this in it:

<?php

$Email = Trim(stripslashes($_POST));

$Body = "This email should be added to the list: $Email";

$success = mail("[email protected]", "New Subscribe", $Body, "From: [email protected]");

?>