Re: Embperl::Mail bug

2005-04-13 Thread RobertCZ
Gerald Richter wrote: OK, now I run it with inputfile => email1.eo / inputfile => email2.eo and it works, thanks a lot. However, both email?.eo are identical, I just call them with a modified udat, so it's not optimal, I need to mainten it twice. Is there a way to use inputfile/othe

RE: Embperl::Mail bug

2005-04-10 Thread Gerald Richter
Hi, > > OK, now I run it with inputfile => email1.eo / inputfile => > email2.eo and it works, thanks a lot. However, both email?.eo > are identical, I just call them with a modified udat, so it's > not optimal, I need to mainten it twice. Is there a way to > use inputfile/other param to tell

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