On Thu, 04 Aug 2011 16:20:48 +0200 "Rolf E. Sonneveld" <[email protected]> wrote:
> $newmsg->attach(Data => $bodypart, > Encoding => "base64"); Don't use attach. Use add_part instead (see the MIME::Entity man page) You'll need to ensure that $newmsg is a multipart entity which you can force with the make_multipart method. Regards, David. _______________________________________________ NOTE: If there is a disclaimer or other legal boilerplate in the above message, it is NULL AND VOID. You may ignore it. Visit http://www.mimedefang.org and http://www.roaringpenguin.com MIMEDefang mailing list [email protected] http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

