Re: [PHP] send email by php class

2007-01-08 Thread Jochem Maas
Sancar Saran wrote: > On Monday 08 January 2007 16:56, Jochem Maas wrote: >> [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: > Hi, >> ... >> > Was looking on phpclasses.net for the class but there are tons of them. > Can somebody recomend any class? Something simple. phpmail

Re: [PHP] send email by php class

2007-01-08 Thread Sancar Saran
On Monday 08 January 2007 16:56, Jochem Maas wrote: > [EMAIL PROTECTED] wrote: > >> [EMAIL PROTECTED] wrote: > >>> Hi, > > ... > > >>> Was looking on phpclasses.net for the class but there are tons of them. > >>> Can somebody recomend any class? Something simple. > >> > >> phpmailer.sourceforge.net

Re: [PHP] send email by php class

2007-01-08 Thread Jochem Maas
[EMAIL PROTECTED] wrote: >> [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: > Hi, >> ... >> ... > > Jochem, > I'm reading most of the posted questions/answers on the mailing list > because of exact reason you mentioned. You're right. But, don't remember > any that can help me with thi

Re: [PHP] send email by php class

2007-01-08 Thread afan
> [EMAIL PROTECTED] wrote: >>> [EMAIL PROTECTED] wrote: Hi, > > ... > Was looking on phpclasses.net for the class but there are tons of them. Can somebody recomend any class? Something simple. >>> phpmailer.sourceforge.net >> I think this is it. >> :) > > not to sound like

Re: [PHP] send email by php class

2007-01-08 Thread Jochem Maas
[EMAIL PROTECTED] wrote: >> [EMAIL PROTECTED] wrote: >>> Hi, ... >>> >>> Was looking on phpclasses.net for the class but there are tons of them. >>> Can somebody recomend any class? Something simple. >> phpmailer.sourceforge.net > I think this is it. > :) not to sound like an ass (there's at lea

Re: [PHP] send email by php class

2007-01-08 Thread afan
> [EMAIL PROTECTED] wrote: >> Hi, >> To send email confirmation (after registration or to administrator after >> Contact us form is submitted) I use the "standard" way: >> >> function send_confirmation($to, $subject, $message) >> { >> $header = "Content-type: text/plain; charset=iso-8859-1\n";

Re: [PHP] send email by php class

2007-01-08 Thread Jochem Maas
[EMAIL PROTECTED] wrote: > Hi, > To send email confirmation (after registration or to administrator after > Contact us form is submitted) I use the "standard" way: > > function send_confirmation($to, $subject, $message) > { > $header = "Content-type: text/plain; charset=iso-8859-1\n"; > $

[PHP] send email by php class

2007-01-08 Thread afan
Hi, To send email confirmation (after registration or to administrator after Contact us form is submitted) I use the "standard" way: function send_confirmation($to, $subject, $message) { $header = "Content-type: text/plain; charset=iso-8859-1\n"; $header .= "From: Vernon Company <[EMAIL P