- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Mail with several attachment
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
12-22-2003 12:30 AM
12-22-2003 12:30 AM
I'm looking for a HP tool which allows me to send several attachment files in a mail.
I've tried mpack, but it seems that I can only send ONE attachement file at a time.
Regards
Lionel
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 12:34 AM
12-22-2003 12:34 AM
Re: Mail with several attachment
You can use ELM for that purpose.
It is standart installed on HP-UX.
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 12:39 AM
12-22-2003 12:39 AM
Re: Mail with several attachment
from the commandline:
{
echo "body text"\n
uuencode file1 file1
echo \n
uuencode file2 file2
echo \n etc
}| elm -s "subject" account@domain.com
Hope this helps,
Gideon and Peter Geluk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 12:55 AM
12-22-2003 12:55 AM
Re: Mail with several attachment
With ELM and the commandline you give me, the attachment file is not in "attachment" (MIME format)... it is in the body of the mail... :-(
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 01:20 AM
12-22-2003 01:20 AM
Solutionhttp://forums1.itrc.hp.com/service/forums/parseCurl.do?CURL=%2Fcm%2FQuestionAnswer%2F1%2C%2C0x0e6b7e990647d4118fee0090279cd0f9%2C00.html&admit=716493758+1072102509978+28353475
Bruno
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 01:48 AM
12-22-2003 01:48 AM
Re: Mail with several attachment
http://www.banyan.com
Platforms: Unix, Windows, Macintosh
Description: Provides users with e-mail capability via native SMTP and a POP-3 mail client with full MIME compliance. Messaging-based workflow enhancements include the ability to place URLs anywhere within the body of a mail message as hot links to WWW sites, multiple attachment support, search capabilities, text support, public and private address books, built-in imaging support, viewers for attachments, automatic message handling and filtering tools, and application and agent connectability.
You can try the connection...
perhaps it goes.
Product: BeyondMail for SMTP - e-mail and workflow automation (free)
Bruno
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 03:46 AM
12-22-2003 03:46 AM
Re: Mail with several attachment
Within the body of your email add this:
------------------------------------
This is my text. How are you?
[include /tmp/myattach application/octet-stream base64]
This is some more text in the middle.
[include /tmp/myexcel.xls application/ms-excel base64]
This is a closing message in the email.
----------------------------------------
That will attach /tmp/myattach and /tmp/myexcel.xls. You can include multiple attachments using this method. If you are running 10.20 make sure that you have a MIME enabled version of elm (PHNE_15835 or later).
Then to use it from a script:
elm -s "My Subject" user@mailserver.com < myletter
Where myletter contains the attachment include statement as well as your message text. It is also necessary that you have a .elm directory
under the users home directory because unlike the interactive version of elm the command-line version will not create a .elm directory automatically.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2003 06:36 AM
12-22-2003 06:36 AM
Re: Mail with several attachment
I tried this trick in the past, sending mail to a Lotus Notes mail-client. Then the attachment came in the body of the text.
I didn't bother at that time.
Today I tested it again and in Outlook it showed as an attachment(not in the body text).
I didn't check if it is, or not, in MIME format.
Regards,
Peter Geluk