Hi Jason,
this is not a PHP problem. As the message states: The
intranet SMTP server you are addressing does not support
"proxy function" and refuses to forward your mail to e.g.
hotmail. OTOH if you want to send directly you have to
do
ini_set("SMTP", "SMTP_server_you_want_to_drop_your_mail_at")
just before calling mail();

--
Sven

> -----Ursprüngliche Nachricht-----
> Von:  Jason Hawkins [SMTP:[EMAIL PROTECTED]
> Gesendet am:  Donnerstag, 6. März 2003 03:07
> An:   [EMAIL PROTECTED]
> Betreff:      [PHP-WIN] Mail Function Problem
>
> Hi, can anyone help??
> I am trying to use the mail() function. It works for addresses that are 
internal on the intranet - but as soon as I try sending to an external 
address such as [EMAIL PROTECTED] I have problems with the folllowing error 
message:
> SMTP server response: 550 Relaying denied
>
> here is the portion code:
>
>       $firstName = $data["FirstName"];
>       $emailAddress = $data["EmailAddress"];
>       
>       $mail_to = $emailAddress;
>       $mail_subject = "RE:  NEWS SUBSCRIPTION";
>       $mail_body = "Dear " .$firstName . "My Message";
>
>       $myname = "BGGS WebMaster";
>       $myemail = "[EMAIL PROTECTED]";
>       $contactname = $firstName;
>       $contactemail = $mail_to;
>       $message = $mail_body;
>       $subject = $mail_subject;
>
>       $headers = "MIME-Version: 1.0\r\n";
>       $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
>       $headers .= "From: ".$myname." <".$myemail.">\r\n";
>       $headers .= "To: ".$contactname." <".$contactemail.">\r\n";
>       $headers .= "Reply-To: ".$myname." <$myemail>\r\n";
>       $headers .= "X-Priority: 1\r\n";
>       $headers .= "X-MSMail-Priority: High\r\n";
>       $headers .= "X-Mailer: Just My Server";
>
>       if(mail($contactemail, $subject, $message, $headers)){
>               echo "Refusal email has been sent";
>       }else {
>               echo "Failed to send the message";
>       }
>
> Thanks - if someone could help - I'm using WIN2K, PHP4.3
>
> Jason
> This email  (including attachments) is intended for the addressee(s) n  
amed above. No part of it should be reproduced, adapted or transmitted 
without the sender's consent. It is confidential, subject to copyright and 
may be subject to legal or other privilege.  None of these rights, or any 
other rights, are waived if you have received this email in error or 
without permission. If you have received this email in error, please let 
the sender know by reply email, delete it from your system, destroy all 
copies and do not disclose, use or forward this email. Unless explicitly 
attributed, the opinions expressed in this message do not represent the 
official position or opinions of Brisbane Girls Grammar School and should 
not be relied upon. Whilst this email has been scanned by an up to date 
virus scanner and all care has been taken, recipients should check this 
email and any attachments for the presence of viruses.  Brisbane Girls 
Grammar School disclaims all liability for loss or damage caused by viruses 
transmitted by this email.
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to