- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Sending a file as an attachment with email from co...
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
02-17-2002 12:23 AM
02-17-2002 12:23 AM
Sending a file as an attachment with email from command prompt
I dont see any options with mail or mailx. Any command line utilities or free email client software can do that? I need to send a file after PGP encryption.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2002 12:35 AM
02-17-2002 12:35 AM
Re: Sending a file as an attachment with email from command prompt
Look at the bottom of this page. Take a not of the top read solutions,
http://forums.itrc.hp.com/cm/FamilyHome/0,11864,117,00.html
Here is the link to the solution,
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x41950559ff7cd4118fef0090279cd0f9,00.html
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2002 05:23 AM
02-17-2002 05:23 AM
Re: Sending a file as an attachment with email from command prompt
I will use like this ...
#uuencode myfile myfile|mailx -m -s "hi" test@yahoo.com
or simply
#mailx test@hotmail.com
Good day,
AR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2002 07:51 AM
02-17-2002 07:51 AM
Re: Sending a file as an attachment with email from command prompt
for i in `echo filename1 filename2 filename3 ...`
do
uuencode $i $i.txt
done|mailx -m -s "test" username@whereever.com
or for a single file
uuencode filename filename.txt | mailx -m -s "subjectgoeshere" username@whereever.com
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2002 07:46 AM
02-18-2002 07:46 AM
Re: Sending a file as an attachment with email from command prompt
coOL!
The 'uuencode' works!
Thanks a lot to all for the help.
-Narayan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2002 08:09 AM
02-18-2002 08:09 AM
Re: Sending a file as an attachment with email from command prompt
There are an external utility called mpack, you can found at:
ftp://ftp.andrew.cmu.edu/pub/mpack
Regards,
Justo.