views:

16

answers:

1

i have created a form that can send and email with a specified attachment, it come through to my mail address ok, and seem to work fine untill i attempt to open the file, it tell me its damaged or corrupt, i think this is down to my headers.

here is my code.

http://pastebin.com/Y0MUHzSs

any help would be appreciated.

A: 

Using the PHP mail function with attachments is pure pain. Just use Swiftmailer for that purpose. This library does everything you need to send the correct encoding and mimetype of the attachment.

Timo