07-12-2005, 12:31 AM
did you modified the php script outside the "change here" ?
I'm a bit puzzled here as it work for other but my thought:
your ISP forbid mail with attachement or support strangely the "mail" function ?
Or a php setting prevent it to work as it should ?
Try perhaps to change the empty line 95 of the "sendcfg.php" just before this line below:
if (mail($mailto,$MailTitle, "", $header))
Put this:
echo "Debug header display: ".$header;
echo "<br>Debug MailTitle display: ".$MailTitle."<br>";
return;
This instead of sending the mail will display on screen the header value of the mail,
you'll see here what's the content so we can track the problem... post it here please.
Dan
I'm a bit puzzled here as it work for other but my thought:
your ISP forbid mail with attachement or support strangely the "mail" function ?
Or a php setting prevent it to work as it should ?
Try perhaps to change the empty line 95 of the "sendcfg.php" just before this line below:
if (mail($mailto,$MailTitle, "", $header))
Put this:
echo "Debug header display: ".$header;
echo "<br>Debug MailTitle display: ".$MailTitle."<br>";
return;
This instead of sending the mail will display on screen the header value of the mail,
you'll see here what's the content so we can track the problem... post it here please.
Dan