Hi All,
Am using the below script to send the attachement , its working perfectly fine.
EMAIL_ATTACH_FILE=/export/home/oracle/report/report.txt
/usr/bin/mailx -s "${SUBJECT}" ${TO} <<-EOF
Hi,
REPORT FOR INVALID...
Regards,
`unix2dos $EMAIL_ATTACH_FILE | uuencode $EMAIL_ATTACH_FILE`
~.
EOF
echo "Done!"
But the attached file name is coming up with _export_home_oracle_report_report.txt instead of report.txt
Can someone please suggest me ...
Thanks
Riah.