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

When I say resolved (that means it is resolved). This post is for Attachments.
  • Comment on Re^2: MIME::Lite::TT::HTML Sending attachments as blank

Replies are listed 'Best First'.
Re^3: MIME::Lite::TT::HTML Sending attachments as blank
by Anonymous Monk on Feb 23, 2011 at 13:02 UTC
    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

Re^3: MIME::Lite::TT::HTML Sending attachments as blank
by opensourcer (Monk) on Feb 23, 2011 at 06:53 UTC
    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', );