[PHP] mail() implementation problem
Hi The actual implementation of the mail fonction use sendmail -t and relies on sendmail to parse the headers to get the recipients. It would be great if it was possible to switch from this way of using sendmail to a more classic sendmail -f sender rcpt it should be quite easy, but I lack time to do it. -- Mathieu Arnold -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] mail() implementation problem
Hi The actual implementation of the mail function use sendmail -t and relies on sendmail to parse the headers to get the recipients. It would be great if it was possible to switch from this way of using sendmail to a more classic sendmail -f sender rcpt it should be quite easy, but I lack time to do it. -- Mathieu Arnold -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] mail() implementation problem
Manuel Lemos wrote: > > Hello, > > Mathieu Arnold wrote: > > > > Hi > > > > The actual implementation of the mail fonction use sendmail -t and > > relies on sendmail to parse the headers to get the recipients. > > It would be great if it was possible to switch from this way of using > > sendmail to a more classic > > sendmail -f sender rcpt > > it should be quite easy, but I lack time to do it. > > You may want to try this PHP MIME message composing and sending class > that has subclasses for sending messages using directly sendmail, qmail > or even a SMTP server. > > http://phpclasses.UpperDesign.com/browse.html/package/9 looks nice, but I'm not going to ask all my clients to change their php scripts ;) I just need to change the way php calls sendmail :) I believe I'm going to do it myself next week or so. -- Mathieu Arnold -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]