Hi there:

On Wednesday, August 14, 2002 9:54 PM, Sridhar M.A.
[SMTP:[EMAIL PROTECTED]] wrote:
> Hi,
> 
> I have to send mail to a group of addresses so that each one sees
> only his/her address in the To field. Can I do this with mutt? I could

You could do it from a shell script thus:

#!/bin/sh

for mailaddress in `cat addresslist`
do
        cat body_of_message | mutt -s <subject> $mailaddress
done

# end of file

'addresslist' is a file containing the email addresses and 'body_of_message'
is another file with the text of the message.
You will have to supply the <subject>

Your queue could cause problems if your list is long.

Vasanth



-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone?  Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
_______________________________________________
linux-india-help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/linux-india-help

Reply via email to