- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sending mail to outlook but attachment is part of ...
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
07-24-2001 02:53 AM
07-24-2001 02:53 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2001 03:15 AM
07-24-2001 03:15 AM
Re: sending mail to outlook but attachment is part of the mail body
gzip -c file_to_compress | uuencode compressed_file >> ./message_to_send
echo "The body of the message" >> ./message_to_send
mailx -s "Subject of the message" xx@yy.zz < message_to_send
at the end, if you want to clean the message_to_send type cat /de/null > ./message_to_send
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2001 04:52 AM
07-24-2001 04:52 AM
Re: sending mail to outlook but attachment is part of the mail body
I have a file "ilfile" whch contains 3 lines. I do ...
gzip -c ilfile | uuencode ilfile.Z >> ilfile.send
echo "This is the body" >> ilfile.send
mailx -s "This is the subject" ian@ssi-world.com < ilfile.send
In MS outlook, I get a message (no attachment) with the text
begin 666 ilfile.Z
G'XL("-)O73L``VEL9FEL90!+3$SD2DI*XDI.3N8"`#3Z'[X,````
`
end
This is the message body
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2001 04:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2001 05:11 AM
07-24-2001 05:11 AM
Re: sending mail to outlook but attachment is part of the mail body
I will send you again my script...
Maybe is something about the path (try absolute path)
gzip -c a.txt | uuencode a.gz >> ./to_send
echo "Body" >> ./to_send
mailx -s "Subject" aa@bb.cc < ./to_send
good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2001 06:51 AM
07-24-2001 06:51 AM