mirror of
https://github.com/ivabus/www
synced 2024-11-14 19:15:06 +03:00
32 lines
614 B
PHP
32 lines
614 B
PHP
|
<?php
|
||
|
|
||
|
## CONFIG ##
|
||
|
|
||
|
# LIST EMAIL ADDRESS
|
||
|
$recipient = "tom@anchorpointcollective.com";
|
||
|
|
||
|
# SUBJECT (Subscribe/Remove)
|
||
|
$subject = "Subscribe";
|
||
|
|
||
|
# RESULT PAGE
|
||
|
$location = "https://tea.xyz";
|
||
|
|
||
|
## FORM VALUES ##
|
||
|
|
||
|
# SENDER - WE ALSO USE THE RECIPIENT AS SENDER IN THIS SAMPLE
|
||
|
# DON'T INCLUDE UNFILTERED USER INPUT IN THE MAIL HEADER!
|
||
|
$sender = $recipient;
|
||
|
|
||
|
# MAIL BODY
|
||
|
$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" );
|
||
|
?>
|