mirror of
https://github.com/ivabus/www
synced 2024-11-13 04:05:14 +03:00
c924e45114
Signed-off-by: Jacob Heider <jacob@tea.xyz>
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" );
|
|
?>
|