Bug 19402 contains a patch which allows arbitrary content-type parameters
to be set in imap_mail_compose.  I'd really like to see this in the tree,
as we already have the ability to set content-disposition parameters, but
oddly not those of content-type.

example usage (and demonstration of an encoding that is not possible
without this patch):

$part1['type']=TYPEMESSAGE;
$part1['subtype']="partial";
$part1['type.parameters'] = array ( 'number' => '1',
                                    'total' => '4',
                                    'id' => '[EMAIL PROTECTED]');
$part1['encoding']=ENCBINARY;
$part1['contents.data']=$contents;

Thanks,
Kevin Way

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to