Entry
Can you tell the configuration of the SMTP server for sendind using mail function in linux in php
Mar 28th, 2002 04:34
Deepak Kumar Vasudevan, deepa iyer, PHP.INI Comments and Help
Check out the following fragment from PHP.INI:
[mail function]
; For Win32 only.
;SMTP = 192.168.10.24
; For Win32 only.
;sendmail_from = deepak@cssolutionsinc.com
; For Unix only. You may supply arguments as well (default: 'sendmail -
t -i').
sendmail_path =/usr/lib/sendmail -t -i
This should work. Since Win 32 sections have been commented and Linux
(Unix) things are now active.
deepak