|
Posted by Manuel Lemos on 06/26/05 01:03
Hello,
on 06/25/2005 12:59 PM p cooper said the following:
> Im trying to get phpwebsite and phpsurveyor to communicate with exim
> ( sendmail substitute)
> Exim itself sends mail ( exim -v me@isp.com get delivered)
> When I try to send eg password confirmation from phpwebsite the app seems
> to send it ( i page reloaded - no messages) but nothing is delivered to
> exim
> when i try to send emails from phpsurveyor i get a 'message failed' screen
> message and nothing in exim logs or /var/log/php.errror
>
> display_errors On On
> display_startup_errors On On
> and error-reporting =E_ALL in php.ini
>
> anyone know how to sort this out ?
This could be due to PHP configuration problem. I would check the php.ini.
Alternatively you may want to try this classe for composing and sending
messages.
It comes with a wrapper function named sendmail_mail() that sends
messages injecting them directly in the queue of an MTA compatible with
sendmail, which is the case of Exim.
The sendmail_mail() function is compatible with mail() but it does not
depend on your PHP settings. ALl you need to do to try it is to include
a the sendmail_mail.php script and replace the calls to mail() with
sendmail_mail(),
http://www.phpclasses.org/mimemessage
--
Regards,
Manuel Lemos
PHP Classes - Free ready to use OOP components written in PHP
http://www.phpclasses.org/
PHP Reviews - Reviews of PHP books and other products
http://www.phpclasses.org/reviews/
Metastorage - Data object relational mapping layer generator
http://www.meta-language.net/metastorage.html
Navigation:
[Reply to this message]
|