<?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: sendmail in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028541#M910169</link>
    <description>Unix is nice that way, just pub commas between the addresses in the script.&lt;BR /&gt;&lt;BR /&gt;I'm attaching a mail script for reference that also does attachments.  Its got five input parameters but I added that and its easy to strip out.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Mon, 21 Jul 2003 10:41:29 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2003-07-21T10:41:29Z</dc:date>
    <item>
      <title>sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028538#M910166</link>
      <description>Hi you all&lt;BR /&gt;I got the attached script from i do not remember where. In a way it works for "TO" and "CC". Is anybody able to explain how it works.&lt;BR /&gt;How may I send to multiple addressees ("TO's") and or "CC's" and "BCC's". What is obsolete in this script?&lt;BR /&gt;Many thanks in advance&lt;BR /&gt;Juerg</description>
      <pubDate>Mon, 21 Jul 2003 10:00:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028538#M910166</guid>
      <dc:creator>Juerg DENNEBERG</dc:creator>
      <dc:date>2003-07-21T10:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028539#M910167</link>
      <description>Hi Juerg,&lt;BR /&gt;&lt;BR /&gt;I have not checked how it works, but, you can send to multiple addresses with the sendmail alias capability, you can put an alias to the TO and CC fields and update the aliases file accondingly.&lt;BR /&gt;&lt;BR /&gt;If you modify the aliases file you must run the newaliases command to rebuild the sendmail aliases database.&lt;BR /&gt;&lt;BR /&gt;Frank.</description>
      <pubDate>Mon, 21 Jul 2003 10:23:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028539#M910167</guid>
      <dc:creator>Francisco J. Soler</dc:creator>
      <dc:date>2003-07-21T10:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028540#M910168</link>
      <description>Mail addresses can be tied together with commas. So you should be able to put multiple recipients in double quotes. And I believe that you just need to send the mail once. Not sure about BCC, though.&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;&lt;BR /&gt;export EMAIL_TO="dej,tbd"&lt;BR /&gt;export EMAIL_FROM=juerg.denneberg@ch.ey.com&lt;BR /&gt;export EMAIL_CC="dej,tbd"&lt;BR /&gt;export EMAIL_SUBJECT="Dienstleistungsertrag"&lt;BR /&gt;export EMAIL_ALL="$EMAIL_TO,$EMAIL_CC"&lt;BR /&gt;&lt;BR /&gt;{&lt;BR /&gt; echo To: $EMAIL_TO&lt;BR /&gt; echo From: $EMAIL_FROM&lt;BR /&gt; echo CC: $EMAIL_CC&lt;BR /&gt; echo Subject: $EMAIL_SUBJECT&lt;BR /&gt; uuencode DLE.pdf Dienstleistungsertrag.pdf&lt;BR /&gt;} | /usr/sbin/sendmail $EMAIL_ALL&lt;BR /&gt;&lt;BR /&gt;First, all of the variables are set (export). Then the sendmail input is constructed (inside the curly braces). Finally, sendmail receives it's input via the pipe.</description>
      <pubDate>Mon, 21 Jul 2003 10:35:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028540#M910168</guid>
      <dc:creator>Tom Maloy</dc:creator>
      <dc:date>2003-07-21T10:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028541#M910169</link>
      <description>Unix is nice that way, just pub commas between the addresses in the script.&lt;BR /&gt;&lt;BR /&gt;I'm attaching a mail script for reference that also does attachments.  Its got five input parameters but I added that and its easy to strip out.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 21 Jul 2003 10:41:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028541#M910169</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-07-21T10:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028542#M910170</link>
      <description>Juerg -&lt;BR /&gt;Attached is the sample given to our new people.&lt;BR /&gt;It covers different types fo email possiblilities. As others have stated, you email list can be in a variable with multiple addresees.&lt;BR /&gt;&lt;BR /&gt;Best of luck.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;dl</description>
      <pubDate>Mon, 21 Jul 2003 23:09:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028542#M910170</guid>
      <dc:creator>Dave La Mar</dc:creator>
      <dc:date>2003-07-21T23:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028543#M910171</link>
      <description>Hi Tom&lt;BR /&gt;&lt;BR /&gt;It works. Many Thanks&lt;BR /&gt;&lt;BR /&gt;And Thanks also to all others involved&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Juerg Denneberg</description>
      <pubDate>Tue, 22 Jul 2003 11:09:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail/m-p/3028543#M910171</guid>
      <dc:creator>Juerg DENNEBERG</dc:creator>
      <dc:date>2003-07-22T11:09:19Z</dc:date>
    </item>
  </channel>
</rss>

