Lid | 
                 | 
                
				
				Beste heer/mevrouwen, 
 
Weet iemand de reden, waarom ik geen goeie html mail kan versturen met de volgende code? 
 
    
    
        
            
                $body = '
<font face="arial">You are now a member of.
Welcome and enjoy. You can login at http://www.	
The game <b>is not</b> available yet. Please remember that.
Username: '.$nickname.'
Password: '.$password.'</font>';
					
$headers = "MIME-Version: 1.0\r\n"; 
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n"
."Content-Transfer-Encoding: 7bit\r\n";
				
mail($_POST['emailaddress'], 'Registration', $body, 'From:no-reply@domein.nl', $headers);
 
             
            $body = ' <font face="arial">You are now a member of. Welcome and enjoy. You can login at http://www.	   The game <b>is not</b> available yet. Please remember that. Username: '.$nickname.' Password: '.$password.'</font>';   $headers = "MIME-Version: 1.0\r\n";  $headers .= "Content-type: text/html; charset=iso-8859-1\r\n" ."Content-Transfer-Encoding: 7bit\r\n";   mail($_POST['emailaddress'], 'Registration', $body, 'From:no-reply@domein.nl', $headers); 
 
  
         
          
     
 				
				 |