|
Posted by Lieven on 05/16/06 21:55
>
> Lieven,
>
> Did you try asking the authors of the PHP class? Not knowing what it does
> (or even which class it is) makes it impossible to tell what's going on.
This script is just the normal phpmailer
(http://phpmailer.sourceforge.net/), there you can specify that you want to
use smtp like this:
$mailman = new PHPMailer();
$mailman->IsSMTP();
Using this tool, sending mails from our php scripts works, but it is
impossible to ask all our customers to change their php scripts.
>
> Does a simple mail() command work? That would be the place to start if
> you're asking in this group.
No, that is the whole problem. The mail function doesn't work anymore. After
a hard disk crash I copied the whole corrupt hard disk to a new disk,
everything else is working perfectly afterworths except php scripts that are
using the mail() function are getting the internal server error. I didn't
change anything to my configuration files or didn't update any application
on the server. Only raisonable explenation I have is that their must be some
kind of file corrupt after copying it to the new disk.
grt,
Lieven
>
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> jstucklex@attglobal.net
> ==================
[Back to original message]
|