![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to send contents of a file to email as a message | ali560045 | Shell Programming and Scripting | 5 | 12-07-2007 05:53 AM |
| error-when trying to send the message thru email. | MARY76 | Shell Programming and Scripting | 5 | 02-06-2007 01:10 PM |
| send a message through email to 5 people using unix script? | MARY76 | Shell Programming and Scripting | 2 | 02-05-2007 12:29 PM |
| Send email where # is in the email address - Using Unix | jingi1234 | UNIX for Dummies Questions & Answers | 1 | 05-23-2005 08:23 AM |
| Unable to send eMail from a UNIX-Host ( using mailx ) to a Outlook-email-addres(Win) | Vetrivela | UNIX for Advanced & Expert Users | 2 | 02-15-2005 07:43 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
send a message through email to 5 people using unix script.
Hi All,
I want to send a message through email to 5 people in unix script. Please let me know, how to do it.Please do reply it is urgent. Thanks, Mary. |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Duplicate post
|
|
#3
|
|||
|
|||
|
shell
you can use shell to mail five person,
mail -s " hi guy " xx@yy.com you can read mail adresses from a txt file and send mail in a while loop all of them. myFile="/root/somefile" myMail="" while [ 1 ] do read myMail || break mail -s " hi guy " $Mail done < $myFile |
|
#4
|
||||
|
||||
|
Quote:
|
||||
| Google The UNIX and Linux Forums |