in reply to MIME::Lite::TT::HTML Sending attachments as blank

You're kidding right? Re^3: MIME::xxx sending mail with duplicate discription
  • Comment on Re: MIME::Lite::TT::HTML Sending attachments as blank

Replies are listed 'Best First'.
Re^2: MIME::Lite::TT::HTML Sending attachments as blank
by opensourcer (Monk) on Feb 23, 2011 at 05:04 UTC
    When I say resolved (that means it is resolved). This post is for Attachments.
      When I say resolved (that means it is resolved). This post is for Attachments.

      When ikegami explains the problem, and your next question is this exact problem, then it is not resolved

      This post is for Attachments.

      So was the last one

      I think I haven't installed all the required modules, not sure checking now.
        The problem occurred due to missing of file name in Path attribute for attachments
        see below.
        $msg->attach( Type => 'application/msword', Path => '/path/some.doc',#<absolute path+filename>, if +you miss out some.doc then attachment goes as blank Filename => 'some.doc', # filename Disposition => 'attachment', Encoding =>'base64', );