tags:

views:

14

answers:

2

In php mail() function, how can I send attachments? I didn't find parameter to do this. any help will be appreciated.

A: 

Here's an article with an example:

http://www.webcheatsheet.com/PHP/send_email_text_html_attachment.php

Amber
A: 

There must be a multi-part flag you can set somewhere to enable the connection to stay connected until the persons upload is finished.

try this: http://snipplr.com/view/2686/send-multipart-encoded-mail-with-attachments/

ArtemT