RE: [PHP] mail attachments

2003-01-02 Thread Michael J. Pawlowsky
While on the subject of Multi-part Mime Type... I use to use it alot in the past in C cgi's (only Netscape supported at the time) to give status reports when doing long processes etc. This was back in the days when Netscaped ruled It was nice, since you could have a status message updated on

RE: [PHP] mail attachments

2003-01-02 Thread Adam Voigt
ry 02, 2003 8:29 AM To: Edward Peloke Cc: [EMAIL PROTECTED] Subject: Re: [PHP] mail attachments Nope--it's a bit more complicated than that. However, there are a number of classes out there that can help you out

Re: [PHP] mail attachments

2003-01-02 Thread Michael J. Pawlowsky
Yes and no You need to add a "Content-type: multipart/mixed; boundary="Some_unique_string_here)" But then you also need to encode the documants and send them in the "message" of Mail. Look for multipart MIME types on the net to get an idea. Also if you find a nice class to encode bin files

RE: [PHP] mail attachments

2003-01-02 Thread Edward Peloke
: Edward Peloke Cc: [EMAIL PROTECTED] Subject: Re: [PHP] mail attachments Nope--it's a bit more complicated than that. However, there are a number of classes out there that can help you out with that. Cheers, Marco -- php|architect - The Monthly Magazine for PHP Professionals

Re: [PHP] mail attachments

2003-01-02 Thread Marco Tabini
Nope--it's a bit more complicated than that. However, there are a number of classes out there that can help you out with that. Cheers, Marco -- php|architect - The Monthly Magazine for PHP Professionals Come check us out on the web at http://www.phparch.com! --- Begin Message 

Re: [PHP] Mail Attachments

2002-01-24 Thread Neil Freeman
Take a look at the articles on: http://www.devshed.com/Server_Side/PHP HTH Neil Gordon Stewart wrote: > Dear List > > I have just compleated a PHP web frontend to the standard mail function in > PHP. I have got it to send and recieve email. > > Can I take this programming task further and al