code:
1
2
3
| $header = 'Content-Type: multipart/mixed; boundary="This__Is__The__Boundary" MIME-Version: 1.0 From: $email'; |
Het probleem is dat $email niet herkent word als varialble en ik weet niet hoe ik het zou moeten constueren. Ik heb het al zo geprobeert:
code:
1
2
3
| $header = 'Content-Type: multipart/mixed; boundary="This__Is__The__Boundary"';
$header .= "MIME-Version: 1.0";
$header .= "From: '$email'"; |
werkt ook niet, wie weet de oplossing?