Sending files to multiple emails


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Sending files to multiple emails
# 1  
Old 05-12-2015
Sending files to multiple emails

Hi All,

I want to send each file to each email id as below.
Instead of writing saparate 10 mail commands
can we do it in a simple step.
Code:
file1.csv to raghu.s@hps.com
file2.csv to kiran.m@hps.com
file3.csv to kenni.d@hps.com
file4.csv to rani.d@hps.com
file5.csv to sandya.s@hps.com
file6.csv to kartik.a@hps.com
file7.csv to samul.c@hps.com
file8.csv to hegde.b@hps.com
file9.csv to krishna.h@hps.com
file10.csv to ramya.v@hps.com

Please help me.

Thanks,
# 2  
Old 05-12-2015
I would actually use 2 arrays in the event the files aren't sequential. I don't know that you are really saving anything by shorting the number of lines.

Here something to consider...


Code:
#! /bin/bash
arr=(ragu.s kiran.m keeni.d rani.d sandya.s kartik.a samul.c hedge.b krishna.h ramya.v)
count=0
for i in ${arr[@]}
do
(( count++ ))
echo "Mail file${count}.csv to ${i}.hps.com"
done

Note: you would replace the echo statement with the correct system command for the mail command

i.e.

Code:
cat file.csv | mailx -s "subject" -u <user>

# 3  
Old 05-12-2015
How about modifying your file slightly, e.g.
Code:
sed 's/^/</;s/ to / mail /' file
<file1.csv mail raghu.s@hps.com
<file2.csv mail kiran.m@hps.com
<file3.csv mail kenni.d@hps.com
<file4.csv mail rani.d@hps.com
<file5.csv mail sandya.s@hps.com
<file6.csv mail kartik.a@hps.com
<file7.csv mail samul.c@hps.com
<file8.csv mail hegde.b@hps.com
<file9.csv mail krishna.h@hps.com
<file10.csv mail ramya.v@hps.com

and then sourcing the result in your shell?
This User Gave Thanks to RudiC For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Debian

Problem sending out emails

Hi, Our email relay server is a debian server. The application team in our company regularly receives email alerts from one hpux server (which is routed through the email relay server). Today we had problems whereby our company's email recipients are not receiving email alerts from the hpux... (2 Replies)
Discussion started by: anaigini45
2 Replies

2. Debian

Logcheck sending emails everywhere

Hi, I just recently installed logcheck running it at defaults. I don't have a /home/logcheck, even though the logcheck.conf MAILTO variable says "logcheck". Now I have a .forward in my regular home /home/awayand which gets an hourly report from logcheck but I have no clue how to turn that off. I... (0 Replies)
Discussion started by: awayand
0 Replies

3. Shell Programming and Scripting

Hide from adress while sending emails

I have a shell script that sends email alerts to all the teams if there's any issue identified . This is the command that I use to send email alerts to others cat out.out | mail -s "Alerts on $date" $EMAILID Above code sends emails to all the users by default it sends emails to... (2 Replies)
Discussion started by: lazydev
2 Replies

4. Shell Programming and Scripting

Counting lines and sending emails

What I am doing is running ps and search for any connection that is over a specified number, I set it to "1" for testing I want to send an email when any of them are over 50 I want them all in one email Below is the code what I want is to display the output of ps and grepping for "httpd" to a... (3 Replies)
Discussion started by: slufoot80
3 Replies

5. Solaris

How to use text Fonts while sending emails from mailx?

Hi Team, I want to use "Courier New" fonts while sending emails using mailx command from solaris command prompt. Because my SQL output is not printing in correct format in the email. Please assist. Let me know for any details. Thanks, (1 Reply)
Discussion started by: Mukharam Khan
1 Replies

6. AIX

Need help on sending emails to Lotus Notes from Unix

Hi, I am new to UNIX and any help is greatly appreciated. Requirement: Need to check the directory and if the directory has some files then an email needs to be sent to the email ID on Lotus Notes. I need help on sending an email to email ID on Lotus Notes notifying that the files... (3 Replies)
Discussion started by: neetutg
3 Replies

7. Programming

Sending emails in C program for multiple machines on Linux/OSX

Hey guys, i am creating a tool that'll run a couple network test, generate a report then email the report. Now i a bit stuck with the email sending part... I tried at first a script which worked on some machines but then it'll work fine on some machine and act up on others... I can't really rely... (2 Replies)
Discussion started by: Jess83
2 Replies

8. UNIX for Dummies Questions & Answers

Sending Outgoing Emails from Unix Server

the server i have here is a Ubuntu server. it has nagios on it. after setting up nagios and having it work as it should, i realized at the very end of all my work that obviously nagios will also need to send out email alerts to a set of email addresses that it has in its database. my problem... (1 Reply)
Discussion started by: SkySmart
1 Replies

9. UNIX for Dummies Questions & Answers

Sending Emails to a unix process

Hi , I need to have a unix process which is setup to read all incoming mail for some user and process the same. How tough it is to code the same.Is there any way that we can download some shell scripts for the same from some internet site Kindly help. (2 Replies)
Discussion started by: xsriniva
2 Replies
Login or Register to Ask a Question