Sending email in UNIX


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Sending email in UNIX
# 1  
Old 03-25-2015
Sending email in UNIX

can you tell me what is the syntax if I need to keep someone in cc with the below email.

Code:
 mailx -s "shell script completed successfully" arun@gmail.com  < /dev/null

# 2  
Old 03-25-2015
On most systems, it would be:
Code:
mailx -s "shell script completed successfully" -c cc1@addr.com -c cc2@addr.com arun@gmail.com  < /dev/null

to send it to arun with copies to cc1 and cc2.

What does man mailx show as a SYNOPSIS on your system?
# 3  
Old 03-25-2015
thanks a lot don.

Code:
 mailx [-FUm] [-s subject] [-r address] [-h number] address ...
    Receive mode:
      mailx -e
      mailx [-UHLiNn] [-u user]
      mailx -f [-UHLiNn] [filename]
    Obsolescent:
      mailx [-f filename] [-UHLiNn]

# 4  
Old 03-25-2015
Hello ramkumar15,

You can use following command for same.
Code:
cat - Input_file <<EOF | /usr/sbin/sendmail -oi -t
From: ravinder.singh@balle_balle.com
To: ravinder.singh@balle_balle.com
cc: ram_kumar15@balle_balle.com
Subject: Test_sending_email_check
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit
MIME-Version: 1.0
EOF

Thanks,
R. Singh
# 5  
Old 03-25-2015
For a proper MIME Header, a blank link is needed before the 'EOF' marker.

Also, your input may need to be sanitized, such as removing singleton ".". See the sendmail manpage for useful options, including
-i
Do not strip a leading dot from lines in incoming messages, and do not treat a dot on a line by itself as the end of an incoming message. This should be set if you are reading data from a file.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Sending email from UNIX server

Hi, I am trying to send an output of a script in an email. I want to know if there is a way to modify the senders email not as my username on the host server but as one of the sender preset on outlook. I was using cat email.log | /bin/mailx -c cclist -r myemailid -s "subject" tolistids ... (4 Replies)
Discussion started by: gopajitmalakar
4 Replies

2. UNIX for Dummies Questions & Answers

Sending formatted email from unix.

Hi All, I need to send email from unix in the below format. But the email body is coming all in one single line. How do i format the below text, so that the body of email is properly formatted. Please help. TO: <email id> CC: <none> BCC: <none> Subject: Support: file GENERATION is... (3 Replies)
Discussion started by: abhi_123
3 Replies

3. Shell Programming and Scripting

Sending email from a unix program

Hi, I have create a unix prog file to validate data and send out an email. Below is the command used to send out email in the program. But it is not triggering the email. Please advice on this. (echo ${MESSAGE};uuencode "$FCP_OUT" "ERROR_REPORT.csv"; uuencode "$VALIDATION_RPT"... (1 Reply)
Discussion started by: contactsmrajesh
1 Replies

4. Shell Programming and Scripting

Font change in unix while sending email

Hi, I know that we would be require HTML to change the font and color of the text of the output, if we wnt to send that through the email. But I have managed to get below code, can someone look into it and let me know if i can acheive my requirement through this kind of code: Following can... (9 Replies)
Discussion started by: amit.mathur08
9 Replies

5. Shell Programming and Scripting

Sending email from Unix

I am using the following syntax to send an e-mail from Unix (Sun OS). mail -s "hello" abc@yahoo.com But, when I click enter after typing this command, its not exiting and after a while when I give ctrl+c it creates a dead.letter file in my $HOME dir. Can anyone please tell me, if I have to... (7 Replies)
Discussion started by: rajesh8s
7 Replies

6. HP-UX

Sending Unix files as attachments in an email

Hi, I am executing the following command in order to send a file as an attachment: mailx -s "Subject" emailID@xyz.com < Testfile.txt Instead of attaching the file Testfile.txt, it is writing the contents of the file in the email message body. Please advise on how I can send the file as an... (7 Replies)
Discussion started by: sangharsh
7 Replies

7. BSD

help request for sending email from unix to internet

I have a requirement to send email to a group once I have done some tests. I tried the following from command line:- mailx -s "Test REsults for today " myname@companyname.com <testresultfile.txt but the email was not received by anyone basically I followed the format: mailx -s... (1 Reply)
Discussion started by: sbabuts
1 Replies

8. Shell Programming and Scripting

sending email from KSH unix script.

Hi Need guidance on including code to mail a couple of files atached with some subject and mail body !!.. Thanks in advance (3 Replies)
Discussion started by: rosh0623
3 Replies

9. Shell Programming and Scripting

sending email in unix. need help!

how can I send an email in UNIX, attach a file and cc a receipient? i use the command below to attach a file (this works): uuencode path/filename filename | mailx -s "subject" addr@host.com here is how i cc a receipient (this also works): i have a file named cc.lis and contains: Hello... (2 Replies)
Discussion started by: tads98
2 Replies

10. Shell Programming and Scripting

unix - c program sending error from DB to email

hi, i have a database table that automatically logs the errors in the database every 5 mins. what i want to happen is to come up with a program using unix-c that gets all the information from the log table, i have a flag initially set to zero which means that the error is not yet sent, the... (2 Replies)
Discussion started by: chino_52284
2 Replies
Login or Register to Ask a Question