Your Name:
Your Email:

Mail Message:

(No content to process yet.) $ip"; $todayis = date("l, F j, Y, g:i a"); $subject = "EMAIL SYSTEM -- This is a TEST MESSAGE"; $ipi = $_SERVER['REMOTE_ADDR']; $httprefi = $_SERVER['HTTP_REFERER']; $httpagenti = $_SERVER['HTTP_USER_AGENT']; $message = " $todayis \n Message: " . $em_notes . "\n From: $em_visitor ($em_visitormail)\n This email is a simple verification test to demonstrate that your server's \"PHP\" method for sending mail is working properly. If you have received this message, then it is likely that your Zen Cart shop can easily use the \"PHP\" method for Email Transport in your Admin->Configuration->Email Options area. \n\n Additional Info : IP = $ipi \n Browser Info: $httpagenti \n Referral : $httprefi \n "; $from = "From: $myemail\r\n"; if ($myemail != "" && isset($_POST['submit']) && $em_visitormail != '' ) { mail($myemail, $subject, $message, $from); ?>

Date:
Thank You : ( )


Send Another

{if you wish to enable email-testing support, please edit this file ('.basename(__FILE__).') and enter your email address at the top on the 3rd line}
'; } ?>

Server Configuration Details

Server Info

PHP Info

Webserver/Page Info

Zen Cart SUGGESTED path settings


Zen Cart System Info:


PHP Modules:

PHP Info

SERVER variables:
"; foreach($_SERVER as $key=>$value) { echo "$key => $value
"; } // now break it out into objects and arrays, if relevant foreach($_SERVER as $key=>$value) { if (is_object($value)) { foreach($value as $subvalue) { if (is_object($subvalue) || is_array($subvalue)) { foreach($subvalue as $subvalue2) { echo $key.'['.$value.']['.$subvalue.'] => '.$subvalue2.'
'; } } else { echo $key.'['.$value.'] => '.$subvalue.'
'; } } } else if (is_array($value)) { foreach($value as $subvalue) { if (is_array($subvalue)) { foreach($subvalue as $subvalue2) { echo $key.'['.$value.']['.$subvalue.'] => '.$subvalue2.'
'; } } else { echo $key.'['.$value.'] => '.$subvalue.'
'; } } } else { // echo "$key => $value
"; } } ?>