- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to cc in elm command
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-01-2005 07:38 AM
07-01-2005 07:38 AM
how to cc in elm command
cat errors|elm -s "This is atest mail " subrata.sur@gecis.ge.com
But what option i have to use so that i can send cc subrata.sur@ge.com
Plz help
Thanx in advance
Subraat kr sur
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2005 03:03 PM
07-01-2005 03:03 PM
Re: how to cc in elm command
cat errors|elm -s "This is atest mail " subrata.sur@gecis.ge.com,subrata.sur@ge.com
Make sure there are no spaces in the email address list. You can use the same format for mailx:
cat errors|mailx -s "This is atest mail " subrata.sur@gecis.ge.com,subrata.sur@ge.com
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2005 12:45 PM
07-02-2005 12:45 PM
Re: how to cc in elm command
i do not know the author but i have a script
from my archive;
#! /usr/bin/csh
#: send email with attachments, using 'elm'
# $1 = list of message recipients (enclosed in quotes if more than one)
# $2 = subject
# $3 = name of file containing message text
# $4 and on = names of files to be attached
set elmfile=/temp.files/elm.`date +"%Y%m%d%H%M%S" `.$$
set tolist=($1)
set subject=($2)
cat $3 > $elmfile
shift
shift
shift
foreach file ($argv)
echo '[include '$file' attachment/zip base64]' >> $elmfile
end
setenv TERM vt320
setenv TMPDIR /temp.files/
if (0 == $#subject) then
elm $tolist < $elmfile
else
elm -s "$subject" $tolist < $elmfile
endif
Good Luck,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2005 01:18 AM
07-04-2005 01:18 AM
Re: how to cc in elm command
Any other idea How to use CC in the mail
Thanx in advance
Subrata Kr Sur
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2005 08:54 PM
07-04-2005 08:54 PM
Re: how to cc in elm command
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=68106
Good Luck,
There is your answer!!!