Re: Help with MIME::Lite module

2002-04-12 Thread Kevin Meltzer
Take the single quotes off of $nhtmlpage.. the variable isn't being interpolated. Cheers, Kevin On Fri, Apr 12, 2002 at 08:56:15AM -0400, FLAHERTY, JIM-CONT ([EMAIL PROTECTED]) said something similar to: > I am wanting to send HTML reports to clients that can read html mail. > In the Data secti

RE: Help with MIME::Lite module

2002-04-12 Thread David Gray
> my $msg = MIME::Lite->new( >From => '[EMAIL PROTECTED]' > , >To => '[EMAIL PROTECTED]' > , >Cc => '[EMAIL PROTECTED]' , >Subject=> 'Morning Trouble Call report', >Type => 'text/html', >Data => '$rhtmlpage' > > ); > > $msg->se

RE: Help with MIME::Lite module

2002-04-12 Thread Nikola Janceski
you are using single quotes '' which don't interpolate. use double quotes "". > -Original Message- > From: FLAHERTY, JIM-CONT [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 12, 2002 8:56 AM > To: Jim (E-mail); Beginners (E-mail) > Subject: Help with MIME::Lite module > > > I am wantin