hi , i am sanil
i have a perl program for group mailing that is shown below ############################################################################# open(RED,"address_file"); foreach(<RED>) { undef $name; ($name) = split(/:/); push(@addar,$name); } close RED; open(NEW,"|/usr/lib/sendmail -f sanil @addar"); foreach(<STDIN>) { print NEW; } close NEW; ############################################################################### the addres_file contain csy0154@matrix: csy0020@matrix: like that this is a working programm my problem is not that; i like to attach a file and that can be send to all the recipient what can i do? help me #################################### # # # SANILKUMAR.M.M # # S4 CSE # # REGIONAL ENGINEERING COLLEGE # # CALICUT - KERALA # # INDIA # #################################### -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]