Hi All,

I am trying to send the mail using the following code, it won't give any errors but again it won't send any mails. Please help me out to solve the issue,

Code:
#!/usr/bin/perl

my $to='xxx@systems.com';
my $from='yyy@systems.com';
my $subject='Test Mail';

# send email using UNIX/Linux sendmail
open(MAIL, "|/usr/sbin/sendmail -t");
my $out = "Have sent the
...