Thread: php email
View Single Post
  #2 (permalink)  
Old 21-06-2009, 20:02
eUKMatthew eUKMatthew is offline
System Administrator(eUKhost.com)
 
Join Date: Aug 2007
Posts: 97
Default

I am not sure about the exact settings of dedicated server your account is hosted on.

Try to use following test script to check php mail.

Quote:
<?php
$to = 'emailid@yourdomain.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: xyz@yourdomain.com' . "\r\n" .
'Reply-To: emailid@yourdomain.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>
If you are using any type of form then try folowing url in action.

Quote:
<form action="http://www.yourdomain.com/cgi-sys/formmail.pl" method="post">
If problem still persist then please open a support ticket at our helpdesk along with exact domain and location for your php mailer so that we can investigate the issue further.

Matthew,
UK Web Hosting, Website Hosting, Web Hosting UK, Web Hosting
Reply With Quote