Re: [PHP] Looking for easier way to build email message

2008-01-24 Thread Eric Butera
On Jan 24, 2008 6:20 PM, Rene Brehmer <[EMAIL PROTECTED]> wrote: > Drew a blank off the archive, so here goes... > > I'm working on some forms for our company website, all of which simply have > to be mailed to us by email. > > After verifying that the content of all the fields is valid and the pro

Re: [PHP] Looking for easier way to build email message

2008-01-24 Thread Jochem Maas
a well known easy to use wrapper is phpmailer (STW), alternatively check out Manuel Lemos' mail related offerings at phpclasses.org (his code is, afaict, better but also a little more involved. Rene Brehmer schreef: Drew a blank off the archive, so here goes... I'm working on some forms for our

Re: [PHP] Looking for easier way to build email message

2008-01-24 Thread Richard Lynch
On Thu, January 24, 2008 5:20 pm, Rene Brehmer wrote: > Drew a blank off the archive, so here goes... > > I'm working on some forms for our company website, all of which simply > have > to be mailed to us by email. > > After verifying that the content of all the fields is valid and the > proper > t

Re: [PHP] Looking for easier way to build email message

2008-01-24 Thread Nathan Nobbe
On Jan 24, 2008 6:20 PM, Rene Brehmer <[EMAIL PROTECTED]> wrote: > Drew a blank off the archive, so here goes... > > I'm working on some forms for our company website, all of which simply > have > to be mailed to us by email. > > After verifying that the content of all the fields is valid and the

[PHP] Looking for easier way to build email message

2008-01-24 Thread Rene Brehmer
Drew a blank off the archive, so here goes... I'm working on some forms for our company website, all of which simply have to be mailed to us by email. After verifying that the content of all the fields is valid and the proper type, it builds the email message as following. This all works great, b