Re: [PHP] mail attachment

2009-09-06 Thread Paul M Foster
On Sat, Sep 05, 2009 at 06:52:53PM +0200, Grega Leskov??ek wrote: How do I attach a file in mail function or do I have to use PEAR (and if how ...). What are the advantages of PEAR? When do You suggest to use PEAR? You *can* attach something to an email using the mail() function, but the

Re: [PHP] mail attachment

2009-09-05 Thread Bastien Koert
RTFM Bastien On Saturday, September 5, 2009, Grega Leskovšek legr...@gmail.com wrote: How do I attach a file in mail function or do I have to use PEAR (and if how ...). What are the advantages of PEAR? When do You suggest to use PEAR? Thanks in advance, -- Peace refuge:

Re: [PHP] Mail attachment

2003-03-18 Thread Chris Hayes
At 23:24 18-3-2003, you wrote: I'm not sure why, but I get an attachment when sending out a mail with the following (see below). Well, I shouldn't say an attachment, but in Outlook I get that little paperclip, saying there is an attachment. But when I go to open the attachment, there is nothing

Re: [PHP] Mail attachment

2003-03-18 Thread Liam Gibbs
It may be that the mail receiver expects some content after you put this in the header: Content-Type: text/ascii; charset=iso-8859-1\n If you're sending plain text, and no special (read: non-western) characters, i don't think you need that part. That was the fix. Yer a goldmine.

Re: [PHP] Mail attachment

2003-03-18 Thread -{ Rene Brehmer }-
On Tue, 18 Mar 2003 23:19:08 +0100, Chris Hayes wrote about Re: [PHP] Mail attachment what the universal translator turned into this: It may be that the mail receiver expects some content after you put this in the header: Content-Type: text/ascii; charset=iso-8859-1\n If you're sending

RE: [PHP] mail() + attachment

2002-04-21 Thread Boaz Yahav
Class for sending mail with MIME attachments in multipart format using external send mail, mime code and zip http://www.weberdev.com/index.php3?GoTo=get_example.php3?count=336 Class to send a file as an attachment with the php mail() function.