[PHP] Re: mail with attachment

2004-12-09 Thread Dre
I did not try it yet .. but I will Manuel Lemos [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, Dre wrote: Thanks Manuel, I will check the class and here is the code of the mail sending script //== ?php

[PHP] Re: mail with attachment

2004-12-08 Thread Manuel Lemos
Hello, Dre wrote: I'm trying to send a mail with attachment, using mail() fucntion .. the mail is sent with the attached file, but when I open my mail box to check the mail I sent using my script, I find the normal text contents and the attachment displayed as text too !!! ex. if I attached a

[PHP] Re: mail with attachment

2004-12-08 Thread Dre
Thanks Manuel, I will check the class and here is the code of the mail sending script //== ?php $att_name = $_POST['att']; echo $att_name; $att_size = filesize($att_name); $handle= fopen($att_name, r); $file = fread($handle,

[PHP] Re: mail with attachment

2004-12-08 Thread Manuel Lemos
Hello, Dre wrote: Thanks Manuel, I will check the class and here is the code of the mail sending script //== ?php $att_name = $_POST['att']; echo $att_name; $att_size = filesize($att_name); $handle= fopen($att_name, r); $file

[PHP] Re: mail mime attachment

2003-08-28 Thread Manuel Lemos
Hello, On 08/27/2003 06:37 AM, Moritz Steiner wrote: Hi, has somebody a working code example of sending a mail with attachment, my code is unfortunately not working... That may be a bug in the mail() function. You may want to try this other class that has work arrounds for some of the mail()