sending attachment with unix mail???
sending attachment with unix mail???
(OP)
how do u send a attachment with unix mail????
thanks.
thanks.
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
sending attachment with unix mail???
|
RE: sending attachment with unix mail???
use the following commands.
1. (cat <message file> ; cat <attachment file> | uuencode <asattachment file .extension>) | mailx -s "subject" email address
OR
2. (echo "Messages" ; cat <attachment file> | uuencode <asattachment file .extension>) | mailx -s "subject" email address
thanks and rgds
Manjunath
RE: sending attachment with unix mail???
RE: sending attachment with unix mail???