|
TYPO3 API
SVNRelease
|
00001 <?php 00002 00003 /* 00004 * This file is part of SwiftMailer. 00005 * (c) 2004-2009 Chris Corbyn 00006 * 00007 * For the full copyright and license information, please view the LICENSE 00008 * file that was distributed with this source code. 00009 */ 00010 00011 /* 00012 * List of MIME type automatically detected in Swift Mailer. 00013 */ 00014 00015 //You may add or take away what you like (lowercase required) 00016 00017 $swift_mime_types = array( 00018 'aif' => 'audio/x-aiff', 00019 'aiff' => 'audio/x-aiff', 00020 'avi' => 'video/avi', 00021 'bmp' => 'image/bmp', 00022 'bz2' => 'application/x-bz2', 00023 'csv' => 'text/csv', 00024 'dmg' => 'application/x-apple-diskimage', 00025 'doc' => 'application/msword', 00026 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 00027 'eml' => 'message/rfc822', 00028 'aps' => 'application/postscript', 00029 'exe' => 'application/x-ms-dos-executable', 00030 'flv' => 'video/x-flv', 00031 'gif' => 'image/gif', 00032 'gz' => 'application/x-gzip', 00033 'hqx' => 'application/stuffit', 00034 'htm' => 'text/html', 00035 'html' => 'text/html', 00036 'jar' => 'application/x-java-archive', 00037 'jpeg' => 'image/jpeg', 00038 'jpg' => 'image/jpeg', 00039 'm3u' => 'audio/x-mpegurl', 00040 'm4a' => 'audio/mp4', 00041 'mdb' => 'application/x-msaccess', 00042 'mid' => 'audio/midi', 00043 'midi' => 'audio/midi', 00044 'mov' => 'video/quicktime', 00045 'mp3' => 'audio/mpeg', 00046 'mp4' => 'video/mp4', 00047 'mpeg' => 'video/mpeg', 00048 'mpg' => 'video/mpeg', 00049 'odg' => 'vnd.oasis.opendocument.graphics', 00050 'odp' => 'vnd.oasis.opendocument.presentation', 00051 'odt' => 'vnd.oasis.opendocument.text', 00052 'ods' => 'vnd.oasis.opendocument.spreadsheet', 00053 'ogg' => 'audio/ogg', 00054 'pdf' => 'application/pdf', 00055 'png' => 'image/png', 00056 'ppt' => 'application/vnd.ms-powerpoint', 00057 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation', 00058 'ps' => 'application/postscript', 00059 'rar' => 'application/x-rar-compressed', 00060 'rtf' => 'application/rtf', 00061 'tar' => 'application/x-tar', 00062 'sit' => 'application/x-stuffit', 00063 'svg' => 'image/svg+xml', 00064 'tif' => 'image/tiff', 00065 'tiff' => 'image/tiff', 00066 'ttf' => 'application/x-font-truetype', 00067 'txt' => 'text/plain', 00068 'vcf' => 'text/x-vcard', 00069 'wav' => 'audio/wav', 00070 'wma' => 'audio/x-ms-wma', 00071 'wmv' => 'audio/x-ms-wmv', 00072 'xls' => 'application/excel', 00073 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 00074 'xml' => 'application/xml', 00075 'zip' => 'application/zip' 00076 );
1.8.0