Bounced email & sendmail

For some reason the email that I send through sendmail and that gets bounced is not forwarded back to me. Below is a script that I use to send email. Does anybody know what might be causing this problem?

#!/usr/bin/perl

$to = "sdgfdgf\@dsfgdaslgf.com";
$from = "my\@email.com";

open(MAIL, "|/usr/sbin/sendmail -t");
print MAIL "To: $to\n";
print MAIL "From: $from\n";
print MAIL "Subject: Test 1\n\n";
print MAIL qq~
Test
~;

close(MAIL);

 

 

 

 

Top