I'm having the same problem. I'm trying to send an email using PHP and IndigoMail. It works fine with Perl but I can't get it to work with PHP.
Here's the error:
Warning: mail() [function.mail]: Could not execute mail delivery program 'c:\sendmail\sendmail.exe -t'
Here's the PHP code:
<?php
$to = "mvanemmerik@comcast.net";
$subject = "This is the subject";
$message = "This is the message";
mail($to, $subject, $message);
?>
Here's the PHP.ini:
[mail function]
; For Win32 only.
; SMTP = localhost
smtp_port = 587
; For Win32 only.
sendmail_from = mvanemmerik@comcast.net
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
sendmail_path = c:\sendmail\sendmail.exe -t
Here's the sendmail.ini:
[OPTIONS]
MAILSERVER=smtp.comcast.net
FROM=mvanemmerik@comcast.net
REPLYTO=mvanemmerik@comcast.net
REGKEY=none
AUTHENTICATE=y
USERNAME=mvanemmerik@comcast.net
PASSWORD=password_here
PORT=587
Monty