SMTP server response 530 5.7.3

Hi
I am new to PHP and i had to transfer a php page to a windows server. I setup evrything and the page in general is working fine but i have the following problem with a send mail function.

It gives me the following error:

Warning: mail() [function.mail]: SMTP server response: 530 5.7.3 Client was not authenticated in C:InetpubwwwrootLocalUserftphhbrascalsrascalsdoregister.php on line 81

and line 81 is : mail($emailaddress,“New Registration”,$etext,$headers);
and here is the full code:

[php] <?
$emailaddress = "[email protected]";

$name = $HTTP_GET_VARS['name'];	
$dob = $HTTP_GET_VARS['dob'];	
$email = $HTTP_GET_VARS['email'];	
$eyecolour = $HTTP_GET_VARS['eyecolour'];	
$haircolour = $HTTP_GET_VARS['haircolour'];	
$height = $HTTP_GET_VARS['height'];	
$shoesize = $HTTP_GET_VARS['shoesize'];	
$height = $HTTP_GET_VARS['height'];	
$uploadimage = $HTTP_GET_VARS['image1'];	

$etext = "<html><head></head><body>" . 
"Name:$name<br>" .
"DOB:$dob<br>" .
"Email:$email<br>" .
"Eyecolour:$eyecolour<br>" .
"Haircolour:$haircolour<br>" .
"Height:$height<br>" .
"Shoesize:$shoesize<br>" .
"Height:$height<br>";


$headers = 'From: <!-- e -->[email protected]<!-- e -->' . "rn" .
	'X-Mailer: PHP/' . phpversion();
		
mail($emailaddress,"New Registration",$etext,$headers);

?>[/php]

Please help me.

Thanks inadvance

Mod Edit: Added PHP tags and obfuscated email address

Sounds like a permission problem. What did you find when searching the internet for the warning message? Is the windows server hosted, or is it your own machine? If hosted, have you contacted your host concerning this problem?

Its my own machine and we use mostly asp but we are sending emails fine. So i dont think that the problem is the setup os the smtp

Sponsor our Newsletter | Privacy Policy | Terms of Service