http://www.perlmonks.org?node_id=1015960


in reply to MIME::Lite::TT::HTML and attachments

G'day swandown,

This is just an untested suggestion based on the documentation for MIME::Lite::TT::HTML and MIME::Lite.

MIME::Lite::TT::HTML - METHODS shows the constructor (new()) returning a MIME::Lite object (with html mail format).

MIME::Lite - Create a multipart message has:

$msg = MIME::Lite->new( ..., Type => 'multipart/mixed' );

followed by $msg->attach(...) calls.

So, perhaps leaving out the $msg->attr(...) is the right thing to do if your constructor looks more like:

$msg = MIME::Lite::TT::HTML->new( ..., Type => 'multipart/mixed' );

-- Ken

Replies are listed 'Best First'.
Re^2: MIME::Lite::TT::HTML and attachments
by swandown (Novice) on Jan 30, 2013 at 17:20 UTC
    Hi Ken, thanks so much for taking the time to reply. I had however already tried what you've suggested and the behaviour was just the same. For the moment I'm going to send an empty txt template . . . but it's not satisfactory. Cheers, Mark