mailx -c PROBLEM


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers mailx -c PROBLEM
# 1  
Old 11-19-2009
mailx -c PROBLEM

hi All,

i want to email to abc@abc.com which will be in "to" and to def@def.com which will be in "cc".

i tried like this:
mailx -s "Total Collection" abc@abc.com -c def@def.com

but i took error Smilie

How can i success?

Thanx so much.

---------- Post updated at 08:19 AM ---------- Previous update was at 08:18 AM ----------

i had forgotten content of mail.

it is like that :
mailx -s "Total Collection" abc@abc.com -c def@def.com < mailcontent.txt
# 2  
Old 11-19-2009
try
mailx -s "Total Collection" -c def@def.com abc@abc.com < mailcontent.txt
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

mailx problem

I executed my script in linux environment so Here Im facing problem.In linux has mailx command but if i include in following way Im getting error like ./script2.sh: line 6: mailx: command not found. if I use mail command also Im getting same error. $ cat script2.sh while ps | ./pwtst do... (5 Replies)
Discussion started by: ksrivani
5 Replies

2. Solaris

Mailx hanging problem

Hi all, I issued the following mailx -s "TEST" <mail> However it just hang there. :wall: How do i diagnose why it behave like this? Thanks. ---------- Post updated at 02:20 PM ---------- Previous update was at 10:27 AM ---------- No reply on this. Any help will be appreciated. I'm... (2 Replies)
Discussion started by: beginningDBA
2 Replies

3. Shell Programming and Scripting

mailx problem with multiple cc

I am writing a script to send an email of the result of the process but i cannot make the cc work correctly. RECIP="abc@example.com def@example.com" CC="ghi@example.com jkl@eaxmple.com" mailx -s "testing" -c $CC $RECIP < inputfile.txt Result: To: abc@example.com; def@example.com;... (4 Replies)
Discussion started by: The One
4 Replies

4. UNIX for Dummies Questions & Answers

problem with mailx command

Hi, I have written down a script and in that im using mailx command in Unix. Such that i have taken the reciepent that would be in "To" using read command i.e from standard input and echoed the reciepients in cc into a file .Now im not able to use the mailx -r ie which sends the sender... (1 Reply)
Discussion started by: navjotmannan
1 Replies

5. Shell Programming and Scripting

mailx, uuencode problem

I've this command to run ... Purpose : Send attachment file with e-mail body... ( E-mail body i read it from text file) uuencode TEST_FILE.csv TEST_FILE.csv | cat /usr/local/bin/EMAIL_BODY.txt - | mailx -s "TEST Report" -c receiver1@mail.com receiver2@mail.com Here is the... (2 Replies)
Discussion started by: prash184u
2 Replies

6. Shell Programming and Scripting

mailx problem

Hi Experts, Just need help maybe you have some time to spare :) I am having trouble creating a working script that will scan a file and mail specific persons I need to mail 5 persons person1,person2,person3,person4,person5 Person1,person2 I need to put them in the TO: field while... (0 Replies)
Discussion started by: makaveli
0 Replies

7. UNIX for Dummies Questions & Answers

Mailx problem

I can send mail from my Sun Solaris 9 box via the mail gui no problem. If I try it from mailx command line, the mail doesn't send. What might be causing this? thanks. (5 Replies)
Discussion started by: FredSmith
5 Replies

8. UNIX for Advanced & Expert Users

problem with mailx

Hi unix lovers, I have some problem with using mailx. I want to send mail as per the instructions in a file. The mail does not reach to CC recepients. To get a clearer picture, this is what I am typing on unix prompt. $ $ mailx ashishp@suntech.com < mail.txt $ And my mail.txt looks... (7 Replies)
Discussion started by: shriashishpatil
7 Replies

9. UNIX for Dummies Questions & Answers

mailx problem

Is there a size limit on the file that can be sent using mailx? I'm trying mailx -s "alertlog" tome@work < /dir/my.log and I only get a portion of the log. The newest portion of the log is not included in the mail. Additionally, I would like the option of mailing just the last 100... (1 Reply)
Discussion started by: djbartkow
1 Replies

10. UNIX for Dummies Questions & Answers

mailx problem

Here is a question I have, maybe someone can help me out. I am new to this UNIX thing. :) I have a file called elist. In this file is a list of 25 email adresses. How can I write a simple command line for that will read the names of the file and send it to each of the email addys. Can I... (2 Replies)
Discussion started by: iastorms
2 Replies
Login or Register to Ask a Question