Hi, this is the whole script:

#!/usr/bin/perl

use strict;
use warnings;

# Open Sendmail
open(MAIL, "|/usr/lib/sendmail -t");

# Write to the sendmail program
print MAIL "To: [EMAIL PROTECTED]";
print MAIL "From: [EMAIL PROTECTED]";
print MAIL "Subject:Yoour Subject\n\n";
print MAIL "Your messsage here";


# Close the sendmail program close(MAIL);




Regards,


Mel




_________________________________________________________________
Overloaded with spam? With MSN 8, you can filter it out http://join.msn.com/?page=features/junkmail&pgmarket=en-gb&XAPID=32&DI=1059



-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to