in reply to Re: MIME::Lite $message construction with variables
in thread MIME::Lite $message construction with variables

I will look into that, unfortunately, it took nearly 2 months to get my UNIX admin to install the MIME::Lite tools, so if I could make this work with what I have right now, I'd be real excited.
  • Comment on Re^2: MIME::Lite $message construction with variables

Replies are listed 'Best First'.
Re^3: MIME::Lite $message construction with variables
by hsinclai (Deacon) on Jun 10, 2004 at 21:49 UTC
    $name is within ' ' single quotes.. so it will not be expanded..

    You might have to resort to something as neanderthal as:
    $message1 = ' part 1 of html code block '; print $message1; print "$name"; $message2 = ' part 2 of html code block '; print $message2;

    You could also use stuff from the CGI module to construct html, but you might need more specific than it can give you.