I've used mailx to send newsletters to clients and prospects using this
script:
#!/bin/sh

cd /home/rshepard/marketing/notifications/

for ADR in $(cat mailing-addr.list)
do
  cat msg | mailx -s "subject_name" $ADR
done

Now I want to add their first name as a salutation and attachments. I know
that the -a option lets me specify an attachment. Could I attach two either
separating the file paths/names with a comma or using the -a option twice?

My web searches for more help than posting a reformatted manual page haven't
found anything useful.

TIA,

Rich

Reply via email to