Details
Description
Zend_Mail::setBodyText() currently only allows a specific type of MIME part to be set. Users should be able to define parameters for the MIME part. For example, users should be able to set the encoding to 7bit, instead of the default QUOTEDPRINTABLE.
Perhaps setBodyText() should optionally accept an instance of Zend_Mime_Part?
But setBodyText() already returns the instance it creates. You could even use fluent interfaces to change the encoding type:
$mail->setBodyText('your body')->encoding = Zend_Mime::ENCODING_7BIT;
Or is this to complicated?