Ik heb op mijn webside's diverse email formulieren staan.
Nu komen sinds kort alle email in de spam binnen (outlook 2010, gmail, Hotmail).
Wie weet waarom deze in de spambox terecht komt.
Bijvoorbaat dankk
Sotocom
Nu komen sinds kort alle email in de spam binnen (outlook 2010, gmail, Hotmail).
PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="nl">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Contact formulier </title>
</head>
<body>
<body style="background-color: #F1F0DA">
<?
// Eventueel is de informatie ook in een database op te slaan
$VoorNaam = $_POST['Voornaam'];
$AchterNaam = $_POST['Naam'];
$Telefoonnr = $_POST['Telefoon'];
$Mobiel = $_POST['Mobiel'];
$EmailAdres = $_POST['Email'];
$Straat = $_POST['Straat'];
$Postcode = $_POST['Postcode'];
$Woonplaats = $_POST['Plaats'];
$BeRicht = $_POST['Bericht'];
$formsent = mail('info@sotocom.nl',
'Gegevens afkomstig van webpagina Pratijk voor AnalytischeHypnotherapie',
"Naam: $VoorNaam $AchterNaam\r\n
Telefoonnr.: $Telefoonnr
Mobieletelf: $Mobiel
Email: $EmailAdres
Straat: $Straat
Postcode en Woonplaats: $Postcode $Woonplaats
Bericht:
$BeRicht",
"From: $EmailAdres\r\nBounce-to:info@sotocom.nl");
if ($formsent) {
echo "<p>Hallo $VoorNaam,<br><br> We hebben je bericht ontvangen.
We zullen je indien nodig zo spoedig mogelijk een antwoord sturen.</p>";
} else {
echo "<p>Sorry, maar er is iets misgegaan met het formulier, probeer
het later nog eens.</p>";
}
?>
</body>
</html>
Wie weet waarom deze in de spambox terecht komt.
Bijvoorbaat dankk
Sotocom
Laatst bewerkt door een moderator: