<?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 Attachments in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664078#M49094</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Check out the top read solutions at the bottom in the hp-ux link,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/FamilyHome/1,11864,117,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/FamilyHome/1,11864,117,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;this is the thread,&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>Wed, 13 Feb 2002 14:56:46 GMT</pubDate>
    <dc:creator>Sanjay_6</dc:creator>
    <dc:date>2002-02-13T14:56:46Z</dc:date>
    <item>
      <title>Sendmail Attachments</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664073#M49089</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I have a small script that emails a log to several people every week. I was wondering how I would attach a file to this email using just shell commands.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;&lt;BR /&gt;Christian Briddon</description>
      <pubDate>Wed, 13 Feb 2002 14:45:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664073#M49089</guid>
      <dc:creator>Christian Briddon</dc:creator>
      <dc:date>2002-02-13T14:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail Attachments</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664074#M49090</link>
      <description>for i in `echo filename1 filename2 filename3 ...`&lt;BR /&gt;do&lt;BR /&gt;uuencode $i $i.txt&lt;BR /&gt;done|mailx -m -s "test" username@whereever.com&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;note the uuencode and the ".txt" at the end of the second $i, this allows the files to be seen as text files.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Wed, 13 Feb 2002 14:49:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664074#M49090</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-02-13T14:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail Attachments</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664075#M49091</link>
      <description>Hi &lt;BR /&gt;Try &lt;BR /&gt;/usr/bin/uuencode &lt;ATTACHMENT&gt; |mailx -m -s "Subject" user's email id&lt;BR /&gt;&lt;BR /&gt;-USA..&lt;/ATTACHMENT&gt;</description>
      <pubDate>Wed, 13 Feb 2002 14:52:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664075#M49091</guid>
      <dc:creator>Uday_S_Ankolekar</dc:creator>
      <dc:date>2002-02-13T14:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail Attachments</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664076#M49092</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Check this out:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa7f93c853cd9d5118ff40090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa7f93c853cd9d5118ff40090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Feb 2002 14:53:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664076#M49092</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-02-13T14:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail Attachments</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664077#M49093</link>
      <description>Hi Christian,&lt;BR /&gt;&lt;BR /&gt;Using straight sendmail:&lt;BR /&gt;&lt;BR /&gt;(echo 'Subject:This is the subject&lt;BR /&gt;&lt;BR /&gt;        this is a test';uuencode /tmp/file /tmp/file.txt)| /usr/lib/sendmail robin.wakefield@ubsw.com&lt;BR /&gt;&lt;BR /&gt;Note the Subject line has a blank line after it, and the uuencoded file has a .txt extension.&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin</description>
      <pubDate>Wed, 13 Feb 2002 14:55:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664077#M49093</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2002-02-13T14:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail Attachments</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664078#M49094</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Check out the top read solutions at the bottom in the hp-ux link,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/FamilyHome/1,11864,117,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/FamilyHome/1,11864,117,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;this is the thread,&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>Wed, 13 Feb 2002 14:56:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664078#M49094</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-02-13T14:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail Attachments</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664079#M49095</link>
      <description>Thanks everyone, that is a great help.&lt;BR /&gt;&lt;BR /&gt;I have allocated points to you all.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Christian</description>
      <pubDate>Wed, 13 Feb 2002 15:20:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-attachments/m-p/2664079#M49095</guid>
      <dc:creator>Christian Briddon</dc:creator>
      <dc:date>2002-02-13T15:20:59Z</dc:date>
    </item>
  </channel>
</rss>

