mail form -> aanvullen met attachment

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Jan H

Jan H

15/08/2007 16:17:00
Quote Anchor link
Hey,

Ik heb nu een mailform, maar ik zou er graag nog de mogelijkheid inbouwen om een bijlage mee te versturen. Het form is in .html, en bij submit wordt onderstaand script uitgevoerd:

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
// get posted data into local variables
$EmailFrom = "*";
$EmailTo = "*";
$Subject = "*";
$Naam = Trim(stripslashes($_POST['Naam']));
$Voornaam = Trim(stripslashes($_POST['Voornaam']));
$Adres = Trim(stripslashes($_POST['Adres']));
$Woonplaats = Trim(stripslashes($_POST['Woonplaats']));
$Postcode = Trim(stripslashes($_POST['Postcode']));
$Provincie = Trim(stripslashes($_POST['Provincie']));
$Land = Trim(stripslashes($_POST['Land']));
$Lengte = Trim(stripslashes($_POST['Lengte']));
$Gewicht = Trim(stripslashes($_POST['Gewicht']));
$Maat = Trim(stripslashes($_POST['Maat']));
$Leeftijd = Trim(stripslashes($_POST['Leeftijd']));
$Email = Trim(stripslashes($_POST['Email']));
$Telefoon = Trim(stripslashes($_POST['Telefoon']));
$Studies = Trim(stripslashes($_POST['Studies']));
$Opmerkingen = Trim(stripslashes($_POST['Opmerkingen']));
//Validatieblablabla
// prepare email body text

$Body = "";
$Body .= "\n";
$Body .= "Naam: ";
$Body .= $Naam;
$Body .= "\n";
$Body .= "Voornaam: ";
$Body .= $Voornaam;
$Body .= "\n";
$Body .= "Adres: ";
$Body .= $Adres;
$Body .= "\n";
$Body .= "Woonplaats: ";
$Body .= $Woonplaats;
$Body .= "\n";
$Body .= "Postcode: ";
$Body .= $Postcode;
$Body .= "\n";
$Body .= "Provincie: ";
$Body .= $Provincie;
$Body .= "\n";
$Body .= "Land: ";
$Body .= $Land;
$Body .= "\n";
$Body .= "Lengte: ";
$Body .= $Lengte;
$Body .= "\n";
$Body .= "Gewicht: ";
$Body .= $Gewicht;
$Body .= "\n";
$Body .= "Maat: ";
$Body .= $Maat;
$Body .= "\n";
$Body .= "Email: ";
$Body .= $Email;
$Body .= "\n";
$Body .= "Telefoon: ";
$Body .= $Telefoon;
$Body .= "\n";
$Body .= "Leeftijd: ";
$Body .= $Leeftijd;
$Body .= "\n";
$Body .= "Studies: ";
$Body .= $Studies;
$Body .= "\n";
$Body .= "Opmerkingen: ";
$Body .= $Opmerkingen;
$Body .= "\n";

// send email
$success = mail($EmailTo, $Subject, $Body, "From: <$EmailFrom>");

// redirect to success page
if ($success){
  print "<meta http-equiv=\"refresh\" content=\"0;URL=ok.html\">";
}

else{
  print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">";
}

?>


kan iemand mij hierbij helpen? alvast vriendelijk bedankt!!!
 
PHP hulp

PHP hulp

28/03/2024 21:57:50
 
Danny K

Danny K

15/08/2007 16:20:00
Quote Anchor link
Begrijp me niet verkeerd hoor maar heb je wel op Google gezocht?
Klik!

Daar leer je toch het meeste van!
Gewijzigd op 01/01/1970 01:00:00 door Danny K
 
Jurgen assaasas

Jurgen assaasas

15/08/2007 16:32:00
Quote Anchor link
Gebruik de PHPmailer class die is vele malen beter dan dit onbeveiligde mailscriptje. Ook zitten daar de functies die jij zoekt standaard in.
 



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.