http://qs1969.pair.com?node_id=1001451


in reply to Re: How to process html script with perl
in thread How to process html script with perl


Hi..

I have use MIME::Lite package to sent email

Based on your reply the code will be as below
$msg = MIME::Lite->new( To =>$ToEmail, From =>$FromName, Subject =>$Subject, Type =>'multipart/related' ); $msg->attach( ############################## # Called HTML script here... # ############################## {open (my $fh,"<","sample.html" ) or die $!; local $/ +=undef; <$fh>} ); $msg->attach( Type => 'image/gif', Id => "$Attachment", Path => "$Attachment" );

is it correct ?