![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Expert-to-Expert. Learn advanced UNIX, UNIX commands, Linux, Operating Systems, System Administration, Programming, Shell, Shell Scripts, Solaris, Linux, HP-UX, AIX, OS X, BSD. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| 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 08:53 AM |
| error-when trying to send the message thru email. | MARY76 | Shell Programming and Scripting | 5 | 02-06-2007 04:10 PM |
| send a message through email to 5 people using unix script? | MARY76 | Shell Programming and Scripting | 2 | 02-05-2007 03:29 PM |
| Send email where # is in the email address - Using Unix | jingi1234 | UNIX for Dummies Questions & Answers | 1 | 05-23-2005 11: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 10:43 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
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 |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|