Re: [htmltmpl] Using HT to create HTML Email

2004-01-07 Thread Chris Faust
> That would certainly work, though I would say this instead: > > &send_email( $email_message->output ); > > Since you're sending the e-mail to a controlled (& homogeneous) list of > HTML-receivable e-mail clients, you don't have to worry about a > corresponding text version. Thanks Jason, that i

Re: [htmltmpl] Using HT to create HTML Email

2004-01-07 Thread Jason Purdy
Chris Faust wrote: Looking at the docs - would the below work? my $email_message = HTML::Template->new( filehandle => *FH, some_loop => [EMAIL PROTECTED], some_val =>$someval, some_if=>1, ); &send_email($email_message); That would certa