<?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 mail in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613265#M36898</link>
    <description>hello as I can send an email with sendmail and attach a file with subject and copies to usuary others &lt;BR /&gt;or exite another option that is not sendmail&lt;BR /&gt;</description>
    <pubDate>Tue, 13 Nov 2001 22:00:12 GMT</pubDate>
    <dc:creator>maria fernanda</dc:creator>
    <dc:date>2001-11-13T22:00:12Z</dc:date>
    <item>
      <title>mail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613265#M36898</link>
      <description>hello as I can send an email with sendmail and attach a file with subject and copies to usuary others &lt;BR /&gt;or exite another option that is not sendmail&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Nov 2001 22:00:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613265#M36898</guid>
      <dc:creator>maria fernanda</dc:creator>
      <dc:date>2001-11-13T22:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: mail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613266#M36899</link>
      <description>Hi Maria,&lt;BR /&gt;&lt;BR /&gt;Look at the bottom of the page for IT resource center forums &amp;gt; hp-ux&lt;BR /&gt;&lt;BR /&gt;Look at the "top read solutions" &lt;BR /&gt;&lt;BR /&gt;Look for "Sending attachments via elm from command line" &lt;BR /&gt;&lt;BR /&gt;Here is the link to that,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x41950559ff7cd4118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x41950559ff7cd4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Nov 2001 22:02:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613266#M36899</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-11-13T22:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: mail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613267#M36900</link>
      <description>#!/usr/bin/perl&lt;BR /&gt; use CGI;&lt;BR /&gt;&lt;BR /&gt; my $query    = new CGI;&lt;BR /&gt; my $sendmail = "/usr/sbin/sendmail -t";&lt;BR /&gt; my $reply_to = "Reply-to: foo@bar.org";&lt;BR /&gt; my $subject  = "Subject: Confirmaci??n de su solicitud";&lt;BR /&gt; my $content  = "Gracias por su solicitud.";&lt;BR /&gt; my $to       = $query-&amp;gt;param('send_to');&lt;BR /&gt; my $file     = "subscribers.txt";&lt;BR /&gt;&lt;BR /&gt; unless ($to) {&lt;BR /&gt;  print $query-&amp;gt;header;&lt;BR /&gt;  print "Por favor, escriba su email y vu??lvalo a intentar";&lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt; open (FILE, "&amp;gt;&amp;gt;$file") or die "Cannot open $file: $!";&lt;BR /&gt; print $to,"\n";&lt;BR /&gt; close(FILE);&lt;BR /&gt;&lt;BR /&gt; my $send_to  = "To: ".$query-&amp;gt;param('send_to');&lt;BR /&gt;&lt;BR /&gt; open(SENDMAIL, "|$sendmail") or die "Cannot open $sendmail: $!";&lt;BR /&gt; print SENDMAIL $reply_to;&lt;BR /&gt; print SENDMAIL $subject;&lt;BR /&gt; print SENDMAIL $to;&lt;BR /&gt; print SENDMAIL "Content-type: text/plain\n\n";&lt;BR /&gt; print SENDMAIL $content;&lt;BR /&gt; close(SENDMAIL);&lt;BR /&gt;&lt;BR /&gt; print $query-&amp;gt;header;&lt;BR /&gt; print "La confirmaci??n de su solicitud se le enviar?? ahora</description>
      <pubDate>Tue, 13 Nov 2001 22:09:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613267#M36900</guid>
      <dc:creator>Jairo Campana</dc:creator>
      <dc:date>2001-11-13T22:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: mail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613268#M36901</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can use mailx or elm (Menu driven) to send an e-mail without useng "sendmail" option &lt;BR /&gt;&lt;BR /&gt;Goodluck,&lt;BR /&gt;-USA..</description>
      <pubDate>Tue, 13 Nov 2001 22:12:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613268#M36901</guid>
      <dc:creator>Uday_S_Ankolekar</dc:creator>
      <dc:date>2001-11-13T22:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: mail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613269#M36902</link>
      <description>I do not need elm so that it has to be automatic and mailx when attach shows the content</description>
      <pubDate>Tue, 13 Nov 2001 22:20:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613269#M36902</guid>
      <dc:creator>maria fernanda</dc:creator>
      <dc:date>2001-11-13T22:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: mail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613270#M36903</link>
      <description>uuencode file namefile | /usr/sbin/sendmail address email &lt;BR /&gt;where I write the subject?</description>
      <pubDate>Tue, 13 Nov 2001 23:01:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613270#M36903</guid>
      <dc:creator>maria fernanda</dc:creator>
      <dc:date>2001-11-13T23:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: mail</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613271#M36904</link>
      <description>Maria,&lt;BR /&gt;&lt;BR /&gt;To get  what you want do this:&lt;BR /&gt;&lt;BR /&gt;1) Create a mail_header file&lt;BR /&gt;with the following lines&lt;BR /&gt;****&lt;BR /&gt;To:xyz@aaa.com&lt;BR /&gt;Cc:cc@xyz.com,123@xxx.com&lt;BR /&gt;Subject:Your Subject&lt;BR /&gt;&lt;SPACE&gt;&lt;BR /&gt;*****&lt;BR /&gt;2) Next create a script&lt;BR /&gt;"sendme.sh" with the lines&lt;BR /&gt;****&lt;BR /&gt;cat mail_header&lt;BR /&gt;uuencode &lt;FILE&gt; &lt;NEWFILE&gt;&lt;BR /&gt;***&lt;BR /&gt;chmod 750 sendme.sh&lt;BR /&gt;3) then, send it!&lt;BR /&gt;./sendme.sh | sendmail -t&lt;BR /&gt;&lt;BR /&gt;****&lt;BR /&gt;&lt;BR /&gt;Works fine for me.&lt;BR /&gt;&lt;BR /&gt;-raj&lt;BR /&gt;&lt;/NEWFILE&gt;&lt;/FILE&gt;&lt;/SPACE&gt;</description>
      <pubDate>Tue, 13 Nov 2001 23:34:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mail/m-p/2613271#M36904</guid>
      <dc:creator>Roger Baptiste</dc:creator>
      <dc:date>2001-11-13T23:34:43Z</dc:date>
    </item>
  </channel>
</rss>

