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