Hi all,
The PHP manual states that: "The Windows implementation of mail()
differs in many ways from the Unix implementation. First, it doesn't
use a local binary for composing messages but only operates on direct
sockets which means a MTA is needed listening on a network socket
(which can either on the localhost or a remote machine). "
Does this mean that the sendmail binary is NOT needed on windows?
Also, the manual used to state that:
"For the Mail functions to be available, PHP must have access to the
sendmail binary on your system during compile time. If you use another
mail program, such as qmail or postfix, be sure to use the appropriate
sendmail wrappers that come with them. PHP will first look for
sendmail in your PATH, and then in the following: /usr/bin:/usr/sbin:/
usr/etc:/etc:/usr/ucblib:/usr/lib. It's highly recommended to have
sendmail available from your PATH. Also, the user that compiled PHP
must have permission to access the sendmail binary."
I couldn't find this in the manual anymore, is it still applicable?
What if you are downloading the PHP binaries, do you need to worry
about this?
Thanks
Taras
The PHP manual states that: "The Windows implementation of mail()
differs in many ways from the Unix implementation. First, it doesn't
use a local binary for composing messages but only operates on direct
sockets which means a MTA is needed listening on a network socket
(which can either on the localhost or a remote machine). "
Does this mean that the sendmail binary is NOT needed on windows?
Also, the manual used to state that:
"For the Mail functions to be available, PHP must have access to the
sendmail binary on your system during compile time. If you use another
mail program, such as qmail or postfix, be sure to use the appropriate
sendmail wrappers that come with them. PHP will first look for
sendmail in your PATH, and then in the following: /usr/bin:/usr/sbin:/
usr/etc:/etc:/usr/ucblib:/usr/lib. It's highly recommended to have
sendmail available from your PATH. Also, the user that compiled PHP
must have permission to access the sendmail binary."
I couldn't find this in the manual anymore, is it still applicable?
What if you are downloading the PHP binaries, do you need to worry
about this?
Thanks
Taras
Comment