<?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: Attach files using elm or mailx in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625957#M39876</link>
    <description>Hi James,&lt;BR /&gt;&lt;BR /&gt;Try these links.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000052199391" target="_blank"&gt;http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000052199391&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000019779501" target="_blank"&gt;http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000019779501&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000054887756" target="_blank"&gt;http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000054887756&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, 05 Dec 2001 15:25:50 GMT</pubDate>
    <dc:creator>Sanjay_6</dc:creator>
    <dc:date>2001-12-05T15:25:50Z</dc:date>
    <item>
      <title>Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625951#M39870</link>
      <description>The search engine is kaput again.  So I will have to ask the question first.  HP9000 K200 box 10.20 HPUX, is there anyway that you can attach files when using elm or mailx in scripts.</description>
      <pubDate>Wed, 05 Dec 2001 15:02:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625951#M39870</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2001-12-05T15:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625952#M39871</link>
      <description>James, &lt;BR /&gt;Follow this thread. Should be exactly what you are looking for.&lt;BR /&gt;&lt;BR /&gt;Good Luck,&lt;BR /&gt;C&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0x62f2c6af36b7d5118ff10090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0x62f2c6af36b7d5118ff10090279cd0f9,00.html&lt;/A&gt;</description>
      <pubDate>Wed, 05 Dec 2001 15:05:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625952#M39871</guid>
      <dc:creator>Craig Rants</dc:creator>
      <dc:date>2001-12-05T15:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625953#M39872</link>
      <description>I actually have a script I use for this.&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;MAILFILE=/tmp/mailtemp&lt;BR /&gt;HEADER=/tmp/header&lt;BR /&gt;&lt;BR /&gt;clear&lt;BR /&gt;echo "Enter the email address: \c"&lt;BR /&gt;read TO&lt;BR /&gt;echo "Enter the Cc email address: \c"&lt;BR /&gt;read CC&lt;BR /&gt;echo "Enter the Bcc email address: \c"&lt;BR /&gt;read BCC&lt;BR /&gt;echo "Enter the Subject: \c"&lt;BR /&gt;read SUBJECT&lt;BR /&gt;echo "Enter the Body: \c"&lt;BR /&gt;read BODY&lt;BR /&gt;echo "Enter the filename of the attachment: \c"&lt;BR /&gt;read DATAFILE&lt;BR /&gt;&lt;BR /&gt;echo To: $TO &amp;gt;&amp;gt; $HEADER&lt;BR /&gt;echo Cc: $CC &amp;gt;&amp;gt; $HEADER&lt;BR /&gt;echo Bcc: $BCC &amp;gt;&amp;gt; $HEADER&lt;BR /&gt;echo Subject: $SUBJECT &amp;gt;&amp;gt; $HEADER&lt;BR /&gt;echo "" &amp;gt;&amp;gt; $HEADER&lt;BR /&gt;echo "" &amp;gt;&amp;gt; $HEADER&lt;BR /&gt;echo $BODY &amp;gt;&amp;gt; $HEADER&lt;BR /&gt;echo "" &amp;gt;&amp;gt; $HEADER&lt;BR /&gt;&lt;BR /&gt;cat $HEADER &amp;gt; $MAILFILE&lt;BR /&gt;uuencode $DATAFILE $DATAFILE.doc &amp;gt;&amp;gt; $MAILFILE&lt;BR /&gt;cat $MAILFILE | /usr/lib/sendmail -t&lt;BR /&gt;rm $MAILFILE&lt;BR /&gt;rm $HEADER&lt;BR /&gt;&lt;BR /&gt;C</description>
      <pubDate>Wed, 05 Dec 2001 15:08:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625953#M39872</guid>
      <dc:creator>Craig Rants</dc:creator>
      <dc:date>2001-12-05T15:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625954#M39873</link>
      <description>You can use uuencode to attach files. &lt;BR /&gt;&lt;BR /&gt;uuencode file |mailx -s "The file"  email_id&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Wed, 05 Dec 2001 15:08:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625954#M39873</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-12-05T15:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625955#M39874</link>
      <description>The example should be&lt;BR /&gt;&lt;BR /&gt;uuencode file file| mailx -s "file " email_id&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Dec 2001 15:13:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625955#M39874</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-12-05T15:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625956#M39875</link>
      <description>HI&lt;BR /&gt;Try this&lt;BR /&gt;#/usr/bin/uuencode file file |mailx -m -s "The Subject" your_email_id &lt;BR /&gt;&lt;BR /&gt;Prashant.</description>
      <pubDate>Wed, 05 Dec 2001 15:15:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625956#M39875</guid>
      <dc:creator>Deshpande Prashant</dc:creator>
      <dc:date>2001-12-05T15:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625957#M39876</link>
      <description>Hi James,&lt;BR /&gt;&lt;BR /&gt;Try these links.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000052199391" target="_blank"&gt;http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000052199391&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000019779501" target="_blank"&gt;http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000019779501&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000054887756" target="_blank"&gt;http://us-support2.external.hp.com/cki/bin/doc.pl/sid=cfde2ec2004ccc334f/screen=ckiDisplayDocument?docId=200000054887756&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, 05 Dec 2001 15:25:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625957#M39876</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-12-05T15:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625958#M39877</link>
      <description>Thanks for all the fast information.  The one that I am trying to use is elm with the include.  I downloaded and installed PATCH PHNE_15835 and I have it working, but my only concern now is I get the text msg in the body as well as an attachment.  Is there someway that I can avoid the full msg in the body, as some of them are quite large.</description>
      <pubDate>Wed, 05 Dec 2001 16:36:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625958#M39877</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2001-12-05T16:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625959#M39878</link>
      <description>I use an include file that has the text:&lt;BR /&gt;&lt;BR /&gt;[inlcude filename text/plain quoted/printable]&lt;BR /&gt;&lt;BR /&gt;where of course filename is your file.  The include file I will name something like file_email and then use the command:&lt;BR /&gt;&lt;BR /&gt;mailx tracey</description>
      <pubDate>Wed, 05 Dec 2001 17:17:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625959#M39878</guid>
      <dc:creator>Tracey</dc:creator>
      <dc:date>2001-12-05T17:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625960#M39879</link>
      <description>Oops, forgot to mention that it works with elm the same way on 11.x.  Not sure if it works with mailx on systems with 10.x OS's.</description>
      <pubDate>Wed, 05 Dec 2001 17:18:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625960#M39879</guid>
      <dc:creator>Tracey</dc:creator>
      <dc:date>2001-12-05T17:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625961#M39880</link>
      <description>Tracy thanks for the input, I have problems putting out the full explanation.  I am sending this mail to Outlook.  When the message comes in to my outlook in folder.  The attachment is there like I want it to, but also the body of the message is the full text message of the attachment.  What I would like is just the attachment without the body part.</description>
      <pubDate>Wed, 05 Dec 2001 18:28:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625961#M39880</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2001-12-05T18:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625962#M39881</link>
      <description>Here is how you can do it as I know it, but you have to go int elm:&lt;BR /&gt;&lt;BR /&gt;1) go into elm&lt;BR /&gt;2) m)ail a message, fill out the to, subject, etc.&lt;BR /&gt;3) you will then go into vi, where you can draft a message, wq out when done.&lt;BR /&gt;4) you will then see a set of options at the bottom of your screen, among those is         a)ttachments, select it.&lt;BR /&gt;5) you will go to a screen where you have more options at the bottom, among those is a)dd, type a and at filename:, enter the path of the filename and hit return and then hit return again to get the menu selections mentioned above.  If you are done, choose q)uit.&lt;BR /&gt;6) You should be back to the menus dscribed in #4, if you are ready to send, choose s)end.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This seems pretty long and drawn out, but it has worked for me with things I have wanted to send.  Give it a try, what have you got to lose?&lt;BR /&gt;&lt;BR /&gt;Good luck&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Wed, 05 Dec 2001 18:44:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625962#M39881</guid>
      <dc:creator>Christopher McCray_1</dc:creator>
      <dc:date>2001-12-05T18:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625963#M39882</link>
      <description>This is one of my favorite subjects...&lt;BR /&gt;There are a couple ways to do this ..&lt;BR /&gt;You can use uuencode (as was mentioned)&lt;BR /&gt;You can use a third party..some folks like MPack&lt;BR /&gt;But my personal favorite is using the include statement..which is where Craig's thread will point you.&lt;BR /&gt;&lt;BR /&gt;I've attached a script I wrote  awhile back for myself to run a bunch of performance reports for a vendor and email all those reports as attached files...Maybe it would give you a couple ideas..&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rita&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Dec 2001 18:46:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625963#M39882</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2001-12-05T18:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: Attach files using elm or mailx</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625964#M39883</link>
      <description>HI&lt;BR /&gt;I use following command to get file only in  attachment in outlook as well as in lotus notes.&lt;BR /&gt;&lt;BR /&gt;#/usr/bin/uuencode file file |mailx -m -s "The Subject" your_email_id &lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;Prashant.&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Dec 2001 18:49:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attach-files-using-elm-or-mailx/m-p/2625964#M39883</guid>
      <dc:creator>Deshpande Prashant</dc:creator>
      <dc:date>2001-12-05T18:49:11Z</dc:date>
    </item>
  </channel>
</rss>

