- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Using a script to e-mail multiple MIME attachm...
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
03-30-2001 07:48 AM
03-30-2001 07:48 AM
Anthony
BTW, here is the simple shell that I was using.
The only way that I've gotten it to work is to use dtmail, however, dtmail brings up a window for every message you want to send, which has too much manual input.
### here's one that doesn't give the
## attachment format
for i in ~/tar_tif_files/*
do
elm -s "tiff $i" fax@feel.mk.telcordia.com < $i
done
## This one works as far as attachments go
## but causes you to manually
## address each individual e-mail.
for i in ~/tar_tif_files/*tif
do
/usr/dt/bin/dtmail -a $i
done
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2001 08:04 AM
03-30-2001 08:04 AM
Re: Using a script to e-mail multiple MIME attachments
F1="myfile.txt"
echo "Any text you like" > $F1
echo "more header." >> $F1
for i in ~/tar_tif_files
do
echo "[include ${i} \c" >> $F1
echo "application/octet-stream base 64]" >> $F1
done
echo "Any text you like as a trailer." >> $F1
elm -s "Subject Text" fax@feel.mk.tel < $F1
You must have a MIME enabled version of elm (PHNE-15835 on 10.20).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2001 08:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2001 08:27 AM
03-30-2001 08:27 AM
Re: Using a script to e-mail multiple MIME attachments
/rcw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2001 08:42 AM
03-30-2001 08:42 AM
Re: Using a script to e-mail multiple MIME attachments
http://us-support.external.hp.com/cki/bin/doc.pl/sid=a10342b301d231f7ca/screen=ckiDisplayDocument?docId=200000030894932
There is also this thread:
http://us-support.external.hp.com/cki/bin/doc.pl/sid=d79542db1c1eeb1c8c/screen=ckiDisplayDocument?docId=200000048789276
/rcw