Re: [PHP] Send an e-mail witdh php

2001-11-22 Thread Sebastian Wenleder
Hello, I want to send an e-mail to one address(To) and many carbon copies to many e-mailadresses(BCC). Is there a class to do this?? Henk Hi Henk, You don't need a special class, just use: $to = [EMAIL PROTECTED]; $subject = Your Subject; $messages = some text you want to send...; $headers

Re: [PHP] Send an e-mail witdh php

2001-11-22 Thread Henk
That doesn't work. He is gives the error: Failed to Connect Henk Sebastian Wenleder [EMAIL PROTECTED] wrote in message news:p0510030ab822a385d74e@[192.168.100.2]... Hello, I want to send an e-mail to one address(To) and many carbon copies to many e-mailadresses(BCC). Is there a

RE: [PHP] Send an e-mail witdh php

2001-11-22 Thread Simos Varelakis
-Original Message- From: Henk [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 22, 2001 3:21 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Send an e-mail witdh php That doesn't work. He is gives the error: Failed to Connect Henk check your /etc/php.ini conf

Re: [PHP] Send an e-mail witdh php

2001-11-22 Thread Jason G.
Also, If you have an array of addresses, use the implode() function. $sAddressList = implode(',', $aAddressArray); and then use that with the Bcc: header in the mail function. -Jason Garber IonZoft.com Hi Henk, You don't need a special class, just use: $to = [EMAIL PROTECTED]; $subject =