Re: only static messages via Embperl::Mail ?

2006-02-21 Thread PILCH Hartmut
> just use something like > > $mail = "error message"; > Embperl::Mail::Execute({ input => \$mail, mtime => undef, inputfile => > 'error', to => ... }); Indeed this works, even without the inputfile=>'error' and mtime=>undef parameters it seems. I read on the archive at http://ww

Re: only static messages via Embperl::Mail ?

2006-02-21 Thread RobertCZ
no, input => \$mail is ok as long as you also specify inputfile => 'somename' (as is said clearly in the docs) otherwise embperl can't cache it correctly PILCH Hartmut wrote: > just use something like > > $mail = "error message"; > Embperl::Mail::Execute({ input => \$mail, mtime => undef