Re: [PHP] Re: Emailing attachments upload to a form

2001-12-12 Thread Jon Farmer

 Yeah.. code to divide the message into multiple parts, base64_encode the 
 file, and attach it that way.
 
 I suggest looking for some kind of Email class that can do that for you. 
 Try http://phpclasses.upperdesign.net/
 
 Mike

if you are on *nix used mutt from the commandline.
--
Jon Farmer
Systems Programmer, Entanet www.enta.net
Tel 01952 428969 Mob 07763 620378
PGP Key available, send email with subject: Send PGP Key



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Re: Emailing attachments upload to a form

2001-12-11 Thread Mike Eheler

Yeah.. code to divide the message into multiple parts, base64_encode the 
file, and attach it that way.

I suggest looking for some kind of Email class that can do that for you. 
Try http://phpclasses.upperdesign.net/

Mike

Ben Clumeck wrote:

 When I use the script to upload an attachment to my form it does not email
 the attachment.  I am using the mail() function to email the results of the
 form to me. Is there any other code I need to put in my mail() function to
 make this work, if so where would I put it?
 
 I am currently using the following code:
 ?
 mail ([EMAIL PROTECTED], Form Results, Name: $name\nMessage:
 $message\nAttachment: $attachment, From: $fromemail);
 ?
 
 Thanks,
 
 Ben
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]