In mail "[ruby-talk:10819] Re: Any MIME support for Ruby?"
Kevin Smith <sent / qualitycode.com> wrote:
> TMail doesn't seem to be able to create multi-
> part MIME messages at this point, which would be
> a handy addition.
? TMail can do it. Try:
tmail = TMail::Mail.load_from('Mail/1'
tmail.parts.push TMail::Mail.load_from('Mail/2')
tmail.parts.push TMail::Mail.load_from('Mail/3')
print tmail.encoded
Minero Aoki