Quantcast
Viewing all articles
Browse latest Browse all 67836

Attachments

Replies: 0

Hello,

I have enabled attachments. User can send mails with attachments. Everything is working fine, but User can not send .rar or .zip Files. In my functions I have added this

function my_upload_mimes() {
$mime_types = array(
‘dxf’ => ‘application/dxf’,
‘dwg’ => ‘application/acad’,
‘zip’ => ‘application/zip’,
‘rar’ => ‘application/rar’,
‘ai’ => ‘application/ai’,
‘geo’ => ‘application/geo’,
‘pdf’ => ‘application/pdf’,
‘jpg’ => ‘image/jpeg’,
‘png’ => ‘image/png’,
‘gif’ => ‘image/gif’,
‘bmp’ => ‘image/bmp’,
‘tif’ => ‘image/tiff’,
);
return $mime_types;
}

but it doesn´t work.

Any Idea…


Viewing all articles
Browse latest Browse all 67836

Trending Articles