- Feb 5, 2013
- 1,180
- 412
Hi here is a Email Sub. Script for People who want to have it,
* I DID NOT CREATE THIS, JUST POSTING IT*
Create a new PHP file (e.g. subscribe.php) with any texteditor (e.g. notepad) and place it on your webserver.
Please update the URL in the HTML form. (e.g. subscribe.php)
credits to
* I DID NOT CREATE THIS, JUST POSTING IT*
HTML:
<form method="POST" action="enter the URL to your PHP page here">
<p>Name: <input type="text" name="Name" size="20"></p>
<p>Email: <input type="text" name="Email" size="20"></p>
<p><input type="submit" value="Submit" name="Submit"></p>
</form>
Please update the URL in the HTML form. (e.g. subscribe.php)
PHP:
<?php
## CONFIG ##
# LIST EMAIL ADDRESS
$recipient = "enter the lists email address here";
# SUBJECT (Subscribe/Remove)
$subject = "Subscribe";
# RESULT PAGE
$location = "enter the URL of the result page here";
## FORM VALUES ##
# SENDER - WE ALSO USE THE RECIPIENT AS SENDER
# DON'T INCLUDE UNFILTERED USER INPUT IN THE MAIL HEADER!
# SEE ALSO: How to protect a php Email Form using php mail or mb_send_mail against Mail Header Injection
$sender = $recipient;
# MAIL BODY
$body .= "Name: ".$_REQUEST['Name']." \n";
$body .= "Email: ".$_REQUEST['Email']." \n";
# add more fields here if required
## SEND MESSGAE ##
mail( $recipient, $subject, $body, "From: $sender" ) or die ("Mail could not be sent.");
## SHOW RESULT PAGE ##
header( "Location: $location" );
?>
You must be registered for see links