I have a new install of Ubuntu and trying to use the php's mail() function. The function fails, I guess I am missing a package or two in my installation.
Asked
Active
Viewed 6,942 times
1 Answers
10
Have you configured the mail function in your php.ini ?
sendmail_path = /usr/sbin/sendmail -i -t
or
sendmail_path = /usr/lib/sendmail -i -t

TonyArra
- 10,607
- 1
- 30
- 46
-
1that was part of the answer, I had to install it too: sudo apt-get install sendmail-bin But it putted me on the right track. Tnx. – Itay Moav -Malimovka May 18 '09 at 01:15