Nieuw lid |
|
Dag allemaal,
Ben nieuw hier, ff voorstellen. Ik ben Richie uit Utrecht ben 29 jaar oud en beginnend met websites maken. Joomla html etc.
Nou heb ik de volgende vraag. Ik heb een contactformulier gemaakt een een send_mail.php (heb ik ergens vandaan geplukt) Alleen als een mail verstuurd wordt ontvang ik geen overzicht bv.
Naam: blabla
Email: blabla
Onderwerp: Blabla
Bericht: Bladiebladiebla
Ik krijg alleen wat tekst dat in de berichtvlak is geschreven..
Wie owie
"<?php
/*
This first bit sets the email address that you want the form to be submitted to.
You will need to change this value to a valid email address that you can access.
*/
$webmaster_email = "info@asticad.nl";
/*
This bit sets the URLs of the supporting pages.
If you change the names of any of the pages, you will need to change the values here.
*/
$feedback_page = "contact.html";
$error_page = "error.html";
$thankyou_page = "bedankt.html";
/*
This next bit loads the form field data into variables.
If you add a form field, you will need to add it here.
*/
$naam = $_REQUEST['naam'] ;
$email_address = $_REQUEST['email_address'] ;
$onderwerp = $_REQUEST['onderwerp'] ;
$bericht = $_REQUEST['bericht'] ;
/*
The following function checks for email injection.
Specifically, it checks for carriage returns - typically used by spammers to inject a CC list.
*/
function isInjected($str) {
$injections = array('(\n+)',
'(\r+)',
'(\t+)',
'(%0A+)',
'(%0D+)',
'(%08+)',
'(%09+)'
);
$inject = join('|', $injections);
$inject = "/$inject/i";
if(preg_match($inject,$str)) {
return true;
}
else {
return false;
}
}
// If the user tries to access this script directly, redirect them to the feedback form,
if (!isset($_REQUEST['email_address'])) {
header( "Location: $feedback_page" );
}
// If the form fields are empty, redirect to the error page.
elseif (empty($email_address) || empty($bericht)) {
header( "Location: $error_page" );
}
// If email injection is detected, redirect to the error page.
elseif ( isInjected($email_address) ) {
header( "Location: $error_page" );
}
// If we passed all previous tests, send the email then redirect to the thank you page.
else {
mail( "$webmaster_email", "Bericht van de website",
$bericht, "From: $email_address" );
header( "Location: $thankyou_page" );
}
?>"
"<?php /* This first bit sets the email address that you want the form to be submitted to. You will need to change this value to a valid email address that you can access. */ $webmaster_email = "info@asticad.nl"; /* This bit sets the URLs of the supporting pages. If you change the names of any of the pages, you will need to change the values here. */ $feedback_page = "contact.html"; $error_page = "error.html"; $thankyou_page = "bedankt.html"; /* This next bit loads the form field data into variables. If you add a form field, you will need to add it here. */ $naam = $_REQUEST['naam'] ; $email_address = $_REQUEST['email_address'] ; $onderwerp = $_REQUEST['onderwerp'] ; $bericht = $_REQUEST['bericht'] ; /* The following function checks for email injection. Specifically, it checks for carriage returns - typically used by spammers to inject a CC list. */ function isInjected($str) { $injections = array('(\n+)', '(\r+)', '(\t+)', '(%0A+)', '(%0D+)', '(%08+)', '(%09+)' ); $inject = join('|', $injections); $inject = "/$inject/i"; return true; } else { return false; } } // If the user tries to access this script directly, redirect them to the feedback form, if (!isset($_REQUEST['email_address'])) { header( "Location: $feedback_page" ); } // If the form fields are empty, redirect to the error page. elseif (empty($email_address) || empty($bericht)) { header( "Location: $error_page" ); } // If email injection is detected, redirect to the error page. elseif ( isInjected($email_address) ) { header( "Location: $error_page" ); } // If we passed all previous tests, send the email then redirect to the thank you page. else { mail( "$webmaster_email", "Bericht van de website", $bericht, "From: $email_address" ); header( "Location: $thankyou_page" ); } ?>"
|