Auto-reply in harmonie met PHP header
Sebas V
25/05/2012 08:55:01Hallo,
ik heb een contact formulier gemaakt, echter maak ik ook gebruik van een auto reply in Outlook die een automatisch antwoord naar de gebruiker dient te sturen. Met de PHP headers die ik nu gebruik gaat dit niet goed en krijg ik de reply in mijn eigen mailbox binnen. Hoe kan ik dit fixen?
ik heb een contact formulier gemaakt, echter maak ik ook gebruik van een auto reply in Outlook die een automatisch antwoord naar de gebruiker dient te sturen. Met de PHP headers die ik nu gebruik gaat dit niet goed en krijg ik de reply in mijn eigen mailbox binnen. Hoe kan ik dit fixen?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Een geldig emailadres voor errors
$error_emailadres = '[email protected]';
// HTML mail? True/False
$html = true;
// De headers samenstellen
$headers = 'From: ' . $email . ' <' . $email . '>' . PHP_EOL;
$headers .= 'Reply-To: ' . $email . ' <' . $email . '>' . PHP_EOL;
$headers .= 'Return-Path: Mail-Error <' . $error_emailadres . '>' . PHP_EOL;
$headers .= 'X-Mailer: PHP/' . phpversion() . PHP_EOL;
$headers .= 'X-Priority: Normal' . PHP_EOL;
$headers .= ($html) ? 'MIME-Version: 1.0' . PHP_EOL : '';
$headers .= ($html) ? 'Content-type: text/html; charset=iso-8859-1' . PHP_EOL : '';
mail($to,$email_subject,$email_body,$headers);
$error_emailadres = '[email protected]';
// HTML mail? True/False
$html = true;
// De headers samenstellen
$headers = 'From: ' . $email . ' <' . $email . '>' . PHP_EOL;
$headers .= 'Reply-To: ' . $email . ' <' . $email . '>' . PHP_EOL;
$headers .= 'Return-Path: Mail-Error <' . $error_emailadres . '>' . PHP_EOL;
$headers .= 'X-Mailer: PHP/' . phpversion() . PHP_EOL;
$headers .= 'X-Priority: Normal' . PHP_EOL;
$headers .= ($html) ? 'MIME-Version: 1.0' . PHP_EOL : '';
$headers .= ($html) ? 'Content-type: text/html; charset=iso-8859-1' . PHP_EOL : '';
mail($to,$email_subject,$email_body,$headers);