I cannot seem to get my outgoing mail to work in Php Form Generator. I can send and receive email via Sendmail 8.11.7, but I cannot seem to make work for outbound mail traffic.
My process.php file includes the following line:
mail(".$EmailAddress"," Auto-Reply from webadmin",$message,"From:webadmin@domain.com");
Greetings!
I cannot seem to get my outgoing mail to work in Php Form Generator. I can send and receive email via Sendmail 8.11.7, but I cannot seem to make work for outbound mail traffic.
My process.php file includes the following line:
mail(".$EmailAddress"," Auto-Reply from webadmin",$message,"From:webadmin@domain.com");
My php.ini include has:
[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
sendmail_path =/usr/lib/sendmail
Any suggestions how to fix this problem would be appreciated.
Regards,
Mario2004
Try just $EmailAddress instead of ".$EmailAddress"