K
Kimi
While trying to use this simple unix command to send mail using perl
#!/usr/bin/perl
my $output =`echo Mailbody | mail (e-mail address removed)`;
I am facing a strange issue where "(e-mail address removed)" gets converted to
"(e-mail address removed)" and the mail is sent to it. Could some
one throw pointers to get rid of the issue.
The above unix code works perfectly well when executed separately and
send mail to (e-mail address removed)
Thanks in Advance,
Fahad
#!/usr/bin/perl
my $output =`echo Mailbody | mail (e-mail address removed)`;
I am facing a strange issue where "(e-mail address removed)" gets converted to
"(e-mail address removed)" and the mail is sent to it. Could some
one throw pointers to get rid of the issue.
The above unix code works perfectly well when executed separately and
send mail to (e-mail address removed)
Thanks in Advance,
Fahad