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
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
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
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