Is there any bypass while PHP mailing is down in Starka?

Status
Not open for further replies.

Gestiox

New Member
Messages
23
Reaction score
0
Points
0
Hello,

Please, could someone help me to find a solution while PHP mailing is down?
I have a Zencart Shop in server Starka and I need to send mails from a GMAIL address. It was working fine throught PHP mail until last week, but now PHP mail is down (there are other users affected) and I'cant get it working.
I have tried to configure and test all the other options (sendmail, smtp, smtpauth,...) but it's still not working.
Is there any way to configure now Zencart to send gmail mails in Starka?

Many thanks,
Cómics Gestiox.
 

Gestiox

New Member
Messages
23
Reaction score
0
Points
0
Hello ,

I have run the following senmail example from another thread:


// TEST OF THE MAIL SYSTEM USING PHP mail()

date_default_timezone_set('America/Los_Angeles');
echo date('l jS \of F Y h:i:s A');


$from = "FROM ACCOUNT ON YOUR SITE";
$to="TO ADDRESS";


$mailbody="Test message sent (PST): \n" . date('l jS \of F Y h:i:s A');
$subject="Test of PHP mail()" ;

$headers = "Content-type: text/plain; charset=windows-1251 \r\n";
$headers .= "From: $from\r\n";
$headers .= "Reply-To: $from\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "X-Mailer: PHP/" . phpversion();

$resp = mail($to, $subject, $mailbody, $headers);

if( $resp ){
$outcome = "Mail sent" ;
} else {
$outcome = "Mail not sent";
}

print "\nThe mail system said: $outcome\n\n" ;
exit();


and the answer is:

Friday 4th of November 2011 10:29:19 AM The mail system said: Mail sent


But email never arrives.

Sendmail is broken in server Starka from 4 days ago. Could anyone help or pass the incident to admin team?

Many thanks,
 
Status
Not open for further replies.
Top