![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Sending email with text & attachment using mailx | haryadoon | Shell Programming and Scripting | 3 | 07-26-2006 10:49 PM |
| Sending attachment thru a mail | Rohini Vijay | UNIX for Dummies Questions & Answers | 1 | 05-12-2006 10:13 AM |
| Problem with mailx command when sending attachment. | miltony | Shell Programming and Scripting | 2 | 12-02-2005 08:43 AM |
| mailx error message : mailx: NUL changed to @ | BG_JrAdmin | UNIX for Dummies Questions & Answers | 2 | 12-01-2005 06:27 AM |
| email attachment, with a message using mailx | edog | UNIX for Advanced & Expert Users | 4 | 09-27-2001 10:03 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Hi All,
I am trying to send a mail with an attachment and message. Following command I am using. (cat <messagefile> ; uuencode <attachmentfile> <attachmentfile>)|mailx -s"Subject" dave@email.com In the received mail, message body is appearing fine. But attachment is not coming. Rather content of attachment is appearing in the body of the mail in encoded format. Please advise. Thanks Nihar |
| Forum Sponsor | ||
|
|
|
|||
|
Quote:
I would try: ( echo `cat <messagefile>` ; uuencode <attachmentfile> <attachmentfile>)|mailx -s"Subject" dave@email.com |
| Tags |
| mailx, mailx attachment |
| Thread Tools | |
| Display Modes | |
|
|