Carbon copy for a mail in mailx command


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Carbon copy for a mail in mailx command
# 1  
Old 11-16-2005
Carbon copy for a mail in mailx command

Hi,

Can you please anyone say how to send a mail with carbon copy using the mailx command.

i.e the recipient list should be in CC while the mail reaches them.

I need the option mailx command

Thanks in advance.
# 2  
Old 11-16-2005
-c cc Set the carbon copy list to cc. cc should be enclosed in quotes if it contains more than one name.
# 3  
Old 10-22-2007
I tried using like below

mailx -s "hi" -c abc.com abc.com<<!
This is just a tetsing
!

I just got only one mail instead of 2!!

SunOS 5.8 is my OS.

Anybody please tell me how to send corbon copy?

Thanks.
# 4  
Old 10-22-2007
Try giving differnt ID in ur CC List.

Thanks,
Sam
# 5  
Old 10-22-2007
this is your command


mailx -s "SUBJECT LINE" -c "Cc-LIST,multiple ids separated by a comma" TO-LIST
# 6  
Old 10-22-2007
That'll work Smilie
# 7  
Old 12-18-2007
I get an error as -c illigal opetion.

Note : Using HP-UX.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

~c carbon copy in HP-UX

Hi, I am using HP-UX operating system and i am trying to send email using mailx command is given below. below command is working fine. (echo ~c 'define.d@aol.com' cat $mail_body/temp_body)| mailx -s "Hi - This is mail subject" ${to_mail} problem. i want to use cc_maillist list(put... (13 Replies)
Discussion started by: krupasindhu18
13 Replies

2. Shell Programming and Scripting

Not able to send the mail using mail and mailx command

Hi All, I am trying to send a mail from linux server but could'nt able to send the mail. I tried the below syntax's so far but no luck. mail -s “Hello world” abc@xyz.com < /usr/g/txt.log cat "txt.log" | mailx -s "Hello world" abc@xyz.com mailx -s “Hello world” abc@xyz.com <... (2 Replies)
Discussion started by: scriptscript
2 Replies

3. Shell Programming and Scripting

Mailx command - send mail as table format

I have to send a couple of rows that have been returned from a SQL query. I have written the output of the query to a file and while i try to print this in the mail body the formatting goes wrong. Intended Output in mail body: Col1 Col2 Col3 ------ ... (2 Replies)
Discussion started by: qwertyu
2 Replies

4. Shell Programming and Scripting

Carbon copy using mailx command in HP-UX

Can anyone give me the code to carbon copy a mail using mailx command in HP-UX. I want to put the code in shell script. (3 Replies)
Discussion started by: makauser
3 Replies

5. Shell Programming and Scripting

sending mail through mailx command

Hi I need help to send mail through mailx command . Currenlt my program is like #!/bin/ksh -x echo " " >> path.lst MAIL_LIST='someone1@gamil.com someone2@gamil.com someone3@gamil.com' cat path.lst | mailx -s "path loaction" $MAIL_LIST echo "End" exit 0 Its work fine . But i... (3 Replies)
Discussion started by: mani_isha
3 Replies

6. UNIX for Dummies Questions & Answers

Unable to send e-mail using mailx command

Hi All, Can you please help me in solving this. I am facing some problem sending mails. If I use like this, I am able to send mail the mail echo "This is an automated e-mail; please do not reply." | mailx -s "Good Morning ." 'abc@xys.com' But if I use like this, then I am unable to send... (1 Reply)
Discussion started by: manas6
1 Replies

7. UNIX for Dummies Questions & Answers

sending mail using mailx command

Hi All, Please help me regarding sending mails using mailx command in unix. I will be glad if some one give me the sintax of this. I tried using the below but vain. mailx -s 'Hi' 'xyz@abc.com' Regards, Manas (5 Replies)
Discussion started by: manas6
5 Replies

8. UNIX for Advanced & Expert Users

Problem with Carbon copy (CC) option in mailx command

Hi, I have problems with the cc option in mailx command. Just went through some of the similar threads but none provides a satisfactory explanation. I have a script using the mailx command in the following way: (echo `cat mailsub.txt` ; uuencode attachment.csv attachment.csv) | mailx -s... (2 Replies)
Discussion started by: SmithaN
2 Replies

9. Shell Programming and Scripting

How to use mail,mailx command in Shell Script ?

Hi.. How can i use mailx,mail command in Shell Script. Suppose i gave a condition that x value is above 25 send a mail alert to abc@rediffmail.com. How can i do this? Regards Sollin (16 Replies)
Discussion started by: sollin
16 Replies

10. UNIX for Dummies Questions & Answers

Carbon Copy to exchange user

Hello, I am trying to send a message to few users on an exchange server. I would like to put few of them as CC. When I send it to myself and CC another user, I receive the e-mail and see the other e-mail address under CC but he doesn't receive the e-mail at all. Any ideas ? I am using... (1 Reply)
Discussion started by: mclevy
1 Replies
Login or Register to Ask a Question