02-24-2011, 05:56 PM
hy
you must configure your SMTP server.
in php.ini
or add this line in inc.Settings.php file
doudoux
you must configure your SMTP server.
in php.ini
Code:
SMTP = localhost
; http://php.net/smtp-port
smtp_port = 25
; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = you@yourdomain
or add this line in inc.Settings.php file
PHP Code:
ini_set('sendmail_from', 'you@yourdomain');
ini_set('SMTP', 'localhost');
ini_set('smtp_port', '25');
doudoux