dshaw21369
Programmer
- Jul 8, 2002
- 64
I'm trying to send an email to myself with the code shown below. and I verified the location of send mail and Im still not receiving emails any suggestions?
open (MAIL, "|/usr/lib/sendmail -oi -t -odq" || die "cant use mail send";
print MAIL "from: denesa.k.shaw\@centerpointenergy.com\n";
print MAIL "To: denesa.k.shaw\@centerpointenergy.com\n";
print MAIL "Subject: Rollback\n";
print MAIL "email message";
close MAIL;
Thanks
open (MAIL, "|/usr/lib/sendmail -oi -t -odq" || die "cant use mail send";
print MAIL "from: denesa.k.shaw\@centerpointenergy.com\n";
print MAIL "To: denesa.k.shaw\@centerpointenergy.com\n";
print MAIL "Subject: Rollback\n";
print MAIL "email message";
close MAIL;
Thanks