I have a PHP program using the mail() function. I have this running on a Linux server. Normally it is setup to run over the Linux sendmail function but my machine is setup to use Postfix.
Can I use the PHP mail function over postfix and if so does anyone know how to make that work?
whereis sendmailshould tell you which path to use. And if you look at the sendmail that command returns, you'll find it's a symlink (or maybe a hardlink) pointing atpostfix. – Marc B Nov 7 '11 at 17:49