On Thu 13 Sep 2007 22:09, VeeJay wrote:
> Hello there
> 
> Could someone help me? I am really tired now spending 24 hours continously
> makeing it work...
> 
> I have installed Postfix on my 6.2 freebsd box. Now, whenever, I try to run
> a php script to send mail out, this error is logged into /var/log/maillog
> 
> *Sep 13 21:17:28 veejay postfix/sendmail[1396]: fatal: Recipient addresses
> must be specified on the command line or via the -t option*
> What is wrong there? Here is the php script. there is address:
> 
> 
> $to = "[EMAIL PROTECTED]";
> $from = "[EMAIL PROTECTED]";
> $subject = "Hi!";
> $from_header = "From: $from";
> $contents = "this is email test\n\nDoes it work?";
> 
> if (mail($to, $subject, $contents, $from_header)) {
>   echo("<p>Message successfully sent!</p>");
>  } else {
>   echo("<p>Message delivery failed...</p>");
>  }
> 
> -- 
> Thanks!
> 
> BR / vj

The script is fine, just tested it to be sure (lighttpd 1.4.18, php
5.2.3, postfix 2.4.5)

Does postfix work at all? What hapens when you try to send mail with mail(1)?
Can you attach you postfix and php configuration?

Regards,
Martin Tournoij
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to