View Single Post
  #2 (permalink)  
Old 10-12-2007, 11:35
developmentxl's Avatar
developmentxl developmentxl is offline
Member
 
Join Date: Nov 2007
Location: Edinburgh
Posts: 64
Default

Hey,

There are quite a number of reasons this could be happening, but first of all I'd double check to make sure the mail() function is returning True - if you haven't already ...

PHP Code:
if(mail(your mail parameters)) { 
    echo 
"It works!"
} else {
     echo 
"Failed :("

Reply With Quote