Re: Embperl::Mail bug

2005-04-07 Thread RobertCZ
Gerald Richter wrote: when calling Embperl::Mail twice from the same page, second time it may send the body of the first email. Following code sends two emails with different subjects, but with identical body 'test1 test1' The problem should go away when you specify diff

RE: Embperl::Mail bug

2005-04-07 Thread Gerald Richter
Hi, > > when calling Embperl::Mail twice from the same page, second > time it may send the body of the first email. Following code > sends two emails with different subjects, but with identical > body 'test1 test1' > The problem should go away when you specify different strings as inputfile

Re: Embperl::Mail bug

2005-04-07 Thread RobertCZ
RobertCZ wrote: ups, second example should be $mail2 = qq{ test2 test2 }; Embperl::Mail::Execute({ input => \$mail2, subject => 'Embperl email test2', to => '[EMAIL PROTECTED]', from => '[EMAIL PROTECTED]', }); but whatever I do, even if I execute two differ

Embperl::Mail bug

2005-04-07 Thread RobertCZ
Hi, when calling Embperl::Mail twice from the same page, second time it may send the body of the first email. Following code sends two emails with different subjects, but with identical body 'test1 test1' - R. use Embperl::Mail; $mail = qq{ test1 test1 }; Embperl::Mail::Execute({ input