Re: [PHP] Want to send email in html format

2001-04-24 Thread Henrik Hansen
"George Alexander" <[EMAIL PROTECTED]> wrote: > Hi, > > I am working on a newsletter module. What I want > to know is that how can we send a newsletter via > email to all the subscribers in html format > with images in the htm too??? read http://www.php.net/mail -- Henrik Hansen --

Re: [PHP] Want to send email in html format

2001-04-24 Thread Romeo Manzur
Hi Geroge, you can do this: Fist: make an php document with all the content of the letter at html ex: $body .= " any title \n"; $body .= " \n"; $body .= "http://your.domain.com/image/image.gif\"; width=\"330\" height=\"38\"> \n"; $body .= " This is a mail at html \n"; $body .= " $body .= " note

Re: [PHP] Want to send email in html format

2001-04-24 Thread Charlie Llewellin
One fairly easy way is to use Richard Heyes html mail class available at phpclasses.upperdesign.com > I am working on a newsletter module. What I want > to know is that how can we send a newsletter via > email to all the subscribers in html format > with images in the htm too??? > -- PHP

SV: [PHP] Want to send email in html format

2001-04-24 Thread Martin Oust
rge Alexander [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 24, 2001 4:37 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Want to send email in html format > > > Hi, > > I am working on a newsletter module. What I want > to know is that how can we send a newsletter via

SV: [PHP] Want to send email in html format

2001-04-24 Thread Martin Oust
rge Alexander [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 24, 2001 4:37 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Want to send email in html format > > > Hi, > > I am working on a newsletter module. What I want > to know is that how can we send a newsletter via

SV: [PHP] Want to send email in html format

2001-04-24 Thread Martin Oust
rge Alexander [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 24, 2001 4:37 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Want to send email in html format > > > Hi, > > I am working on a newsletter module. What I want > to know is that how can we send a newsletter via >

RE: [PHP] Want to send email in html format

2001-04-23 Thread Peter Houchin
ED]] Sent: Tuesday, April 24, 2001 4:37 PM To: [EMAIL PROTECTED] Subject: [PHP] Want to send email in html format Hi, I am working on a newsletter module. What I want to know is that how can we send a newsletter via email to all the subscribers in html format with images in the htm

[PHP] Want to send email in html format

2001-04-23 Thread George Alexander
Hi, I am working on a newsletter module. What I want to know is that how can we send a newsletter via email to all the subscribers in html format with images in the htm too??? Well I am able to send an html file as attachment using the php mail() function. But I still can't see the images in th