> In my perl Script I have written command > > `cat stat_file.txt | mail -s "Some subject" [EMAIL PROTECTED] > > and getting email properly on address [EMAIL PROTECTED] > In this email I getting from: [EMAIL PROTECTED], my question is, Is it > possible to change this email address to something like > [EMAIL PROTECTED]
Use mailx instead. Try cat stat_file.txt | mailx -s "Some subject" -r [EMAIL PROTECTED] -R [EMAIL PROTECTED] [EMAIL PROTECTED] Details of command line options are available at http://manpages.unixforum.co.uk/man-pages/linux/opensuse-10.2/1/mailx-man-page.html Raghu -- http://mm.glug-bom.org/mailman/listinfo/linuxers

