- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to attach a file in mailx
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 03:24 PM
10-26-2001 03:24 PM
How to attach a file in mailx
just wondering how to attach a file with a specific name in mailx.
I tried:
uuencode somefile.txt | mailx -s "test" someone@hotmail.com
and
cat somefile.txt | uuencode somefile.txt | mailx -s "test" someone@hotmail.com
None of these worked.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 03:28 PM
10-26-2001 03:28 PM
Re: How to attach a file in mailx
http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0x62f2c6af36b7d5118ff10090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 03:33 PM
10-26-2001 03:33 PM
Re: How to attach a file in mailx
See here:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x3da4854994d9d4118fef0090279cd0f9,00.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 03:40 PM
10-26-2001 03:40 PM
Re: How to attach a file in mailx
mailx -r "test" someone@hotmail.com < somefile
When I open my email, I always receive the attachment as message.txt. I want the attachment to be message.rpt. Is there something I need to configure so that my attachments are in .rpt instead .txt.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 12:26 AM
10-29-2001 12:26 AM
Re: How to attach a file in mailx
How about:
uuencode somefile.txt somefile.rpt| mailx -s "test" someone@hotmail.com
This should deliver the attachment with the name "somefile.rpt".
Rgds, Robin.