PHP interesse |
|
Hallo,
Ik heb de volgende code:
$bericht = 'Beste '.$_POST['username'].',<br /><br />Bedankt dat je je hebt aangemeld op Habbonline! Je account staat voor je klaar, maar je moet hem nog activeren. Dat kun je doen door op de link hieronder te klikken!<br /><br /><a href="'.URL.'/p/active/'.$key.'/" style="color: #FF9731; text-decoration: none;">Activeer mijn account!</a><br /><br />Met vriendelijke groeten,<br /><br />Het Habbonline Team<br /><a href="'.URL.'" style="color: #FF9731; text-decoration: none;">www.habbonline.nl</a>';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'To: '.$_POST['username'].' <'.$_POST['email'].'>' . "\r\n";
$headers .= 'From: Habbonline <no-reply@habbonline.nl>' . "\r\n";
mail($_POST['email'], 'Activatie van je account op Habbonline', $bericht, $headers);
$bericht = 'Beste '.$_POST['username'].',<br /><br />Bedankt dat je je hebt aangemeld op Habbonline! Je account staat voor je klaar, maar je moet hem nog activeren. Dat kun je doen door op de link hieronder te klikken!<br /><br /><a href="'.URL.'/p/active/'.$key.'/" style="color: #FF9731; text-decoration: none;">Activeer mijn account!</a><br /><br />Met vriendelijke groeten,<br /><br />Het Habbonline Team<br /><a href="'.URL.'" style="color: #FF9731; text-decoration: none;">www.habbonline.nl</a>'; $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'To: '.$_POST['username'].' <'.$_POST['email'].'>' . "\r\n"; $headers .= 'From: Habbonline <no-reply@habbonline.nl>' . "\r\n"; mail($_POST['email'], 'Activatie van je account op Habbonline', $bericht, $headers);
als ik dit mailtje verstuur, krijg ik heb 2x in me mailbox, terwijl hij maar een keer vezonden wordt, en ik krijg de headers ook in het mailtje te zien. Weet iemand wat het probleem hieraan is?
Het mailtje:
Content-type: text/html; charset=iso-8859-1
To: bob7p <tomk@live.nl>
From: Habbonline <no-reply@habbonline.nl>
Return-Path: anonymous@server56.hosting2go.nl
X-OriginalArrivalTime: 26 Oct 2008 11:03:39.0532 (UTC) FILETIME=[804464C0:01C9375A]
Beste bob7p,<br /><br />Bedankt dat je je hebt aangemeld op Habbonline! Je account staat voor je klaar, maar je moet hem nog activeren. Dat kun je doen door op de link hieronder te klikken!<br /><br /><a href="URL/p/active/voorwaarden/" style="color: #FF9731; text-decoration: none;">Activeer mijn account!</a><br /><br />Met vriendelijke groeten,<br /><br />Het Habbonline Team<br /><a href="URL" style="color: #FF9731; text-decoration: none;">www.habbonline.nl</a>
Content-type: text/html; charset=iso-8859-1 To: bob7p <tomk@live.nl> From: Habbonline <no-reply@habbonline.nl> Return-Path: anonymous@server56.hosting2go.nl X-OriginalArrivalTime: 26 Oct 2008 11:03:39.0532 (UTC) FILETIME=[804464C0:01C9375A] Beste bob7p ,<br /><br />Bedankt dat je je hebt aangemeld op Habbonline ! Je account staat voor je klaar , maar je moet hem nog activeren . Dat kun je doen door op de link hieronder te klikken !<br /><br /><a href ="URL/p/active/voorwaarden/" style ="color: #FF9731; text-decoration: none;">Activeer mijn account !</a ><br /><br />Met vriendelijke groeten ,<br /><br />Het Habbonline Team <br /><a href ="URL" style ="color: #FF9731; text-decoration: none;">www .habbonline .nl </a >
|