Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm kind of a newbie to this, but here is my scenario.

I am running Apache 2.2 and PHP 5.2.17 on Windows 7. PHP is configured correctly in Apache as I'm able to run scripts, including one with php_info using a browser.

The PHP SMTP configurations values have been entered in php.ini for SMTP, smtp_port, and sendmail_from. The script (containing the mail() function) runs fine from the command line. A different PHPMailer script also runs from the command line.

However, neither script works when called from a browser via the Apache server. On the php page, for the mail() script, I get Could not instantiate mail function. For the PHPMailer script, I get

"SMTP -> ERROR: Failed to connect to server: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. (10060) SMTP Error: Could not connect to SMTP host".

The firewall is off and I have already tried running the Apache service under both an admin and the system accounts.

Please help as I am going nuts trying to solve this issue.

The relevant code for the script using the mail() function is

$headers = 'From: firstname.lastname@.com '; $to = 'firstname2.lastname2@.com'; $subject = 'test subject'; $message = 'test text';

if (mail($to, $subject, $message, $headers)) { echo('

Message successfully sent!

'); } else { echo('

Message delivery failed...

'); }

The relevant code for the script using phpmailer is

require 'class.phpmailer.php'; $mail = new PHPMailer(); $mail->IsSMTP(); $mail->SMTPAuth = false;

$mail->SMTPDebug = 2; $mail->IsHTML(false); $mail->Host = 'smtp.mail.*.com';

$mail->From = 'firstname.lastname@.com'; $mail->FromName = 'first last'; $mail->Subject = 'My subject'; $mail->Body = 'Hello world'; $mail->AddAddress('firstname2.lastname2@.com', 'First Last');

if (!$mail->Send()) { echo $mail->ErrorInfo; }

The SMTP server and addresses are correct. The script runs from the command line, but not under Apache from a browser.

share|improve this question
Could you post some code ? The relevant parts of the script with the mail() function for example. – Andreas Schwarz Feb 23 at 21:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.