<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: mailx:  multiple receiptants in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193190#M165129</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can seperate the mailids with a comma.&lt;BR /&gt;&lt;BR /&gt;mailx -s "subject" mailid1,mailid2 &amp;lt; your_file&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
    <pubDate>Mon, 16 Feb 2004 11:46:59 GMT</pubDate>
    <dc:creator>Sridhar Bhaskarla</dc:creator>
    <dc:date>2004-02-16T11:46:59Z</dc:date>
    <item>
      <title>mailx:  multiple receiptants</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193188#M165127</link>
      <description>How do I send out an email to more than 1 email address with one command?</description>
      <pubDate>Mon, 16 Feb 2004 11:44:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193188#M165127</guid>
      <dc:creator>Jeff Hagstrom</dc:creator>
      <dc:date>2004-02-16T11:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: mailx:  multiple receiptants</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193189#M165128</link>
      <description>Hi Jeff,&lt;BR /&gt;&lt;BR /&gt;Just keep entering recipients separated by spaces&lt;BR /&gt;&lt;BR /&gt;cat filename | mailx -s "Subject here" user1@company.com user2@company.com user3@company.com&lt;BR /&gt;&lt;BR /&gt;and on up to the command line limit.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Mon, 16 Feb 2004 11:46:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193189#M165128</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2004-02-16T11:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: mailx:  multiple receiptants</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193190#M165129</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can seperate the mailids with a comma.&lt;BR /&gt;&lt;BR /&gt;mailx -s "subject" mailid1,mailid2 &amp;lt; your_file&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Mon, 16 Feb 2004 11:46:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193190#M165129</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-02-16T11:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: mailx:  multiple receiptants</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193191#M165130</link>
      <description>I usually keep my email addys in a file separate from the script itself:&lt;BR /&gt;DATA=/path/resultsfile&lt;BR /&gt;MLIST=/path/filename&lt;BR /&gt;for ADDY in `cat $MLIST|grep -v #|awk '{ print $1}'`&lt;BR /&gt;do&lt;BR /&gt;     cat $DATA|mailx -s "Subject" $ADDY&lt;BR /&gt;     # alternative: send as attached file&lt;BR /&gt;     uuencode $DATA $DATA|mailx -s "Subject" $ADDY&lt;BR /&gt;&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;This lets non-root users add or subtract their name from the mailing list.  This mailing list is in a common area available so anyone in the company can subscribe or unsubscribe.  Samba/CIFS is handy for this.  &lt;BR /&gt;A typical mailling list has a line or two of comments at the top (marked with a #) instructing the users to put their addys on a single line followed by a carriage return.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Mon, 16 Feb 2004 15:29:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193191#M165130</guid>
      <dc:creator>Chris Vail</dc:creator>
      <dc:date>2004-02-16T15:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: mailx:  multiple receiptants</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193192#M165131</link>
      <description>Chris s use of CIFS is great for dynamic group of emails. But if you are dealing with a static number of user s emails you can add entries in /etc/aliases file as:&lt;BR /&gt;&lt;BR /&gt;# Local aliases&lt;BR /&gt;sysadmin  : yourbox@domain.com, yourfriend@yahoo.com&lt;BR /&gt;backupadm  : backupadmin@domain.com, yourbox@domain&lt;BR /&gt;root  : yourbox@domain.com&lt;BR /&gt;&lt;BR /&gt;Make sure you stop, re-start maild and you will be able to reach 2 or more people with:&lt;BR /&gt;&lt;BR /&gt;mailx -s "subject" sysadmin &amp;lt; your_file &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Victor&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Feb 2004 10:40:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193192#M165131</guid>
      <dc:creator>Victor Pavon</dc:creator>
      <dc:date>2004-02-17T10:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: mailx:  multiple receiptants</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193193#M165132</link>
      <description>Agree with Victor, you may setup alias using /etc/aliases.</description>
      <pubDate>Tue, 17 Feb 2004 10:47:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mailx-multiple-receiptants/m-p/3193193#M165132</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2004-02-17T10:47:55Z</dc:date>
    </item>
  </channel>
</rss>

