<?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: Attempting to send email attachments from and HP-UX 11.00 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764352#M73228</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If I'am mailing documents to Windows as attachments, I do use the following command:&lt;BR /&gt;&lt;BR /&gt;ux2dos document.whatever |uuencode document.&lt;DESIRED extension=""&gt;|mailx -m -s "Test for mailing as attachment" email@domain.com&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps (I'm sure it works for normal text), BB.&lt;/DESIRED&gt;</description>
    <pubDate>Wed, 17 Jul 2002 10:48:02 GMT</pubDate>
    <dc:creator>Bart Beeren</dc:creator>
    <dc:date>2002-07-17T10:48:02Z</dc:date>
    <item>
      <title>Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764338#M73214</link>
      <description>I have been trying to send attachments by means of different methods provided in a previous forum.  However, I do not seem to be successful either with elm, mailx, uuencode, or sendmail.  These are the methods I used so far with their results:&lt;BR /&gt;&lt;BR /&gt;Sending to:&lt;BR /&gt;Tested with MS Outlook 98 and 2000 Corporate or Workgroup editions email accounts and also to an Outlook Express 5.x.&lt;BR /&gt;File types:&lt;BR /&gt;One .jpg image&lt;BR /&gt;One .doc MS Word doc (format 97) to PCs with Word 97 or Word 2000.&lt;BR /&gt;&lt;BR /&gt;Sendmail going through a Relay mail server.&lt;BR /&gt;&lt;BR /&gt;Methods used:&lt;BR /&gt;1.  For each&lt;BR /&gt;uuencode file1.jpg file1.jpg | mailx -m -s "This is a test" email@domain.com&lt;BR /&gt;&lt;BR /&gt;Result:  The file was embedded in the body of the email with uncomprehensible characters.&lt;BR /&gt;&lt;BR /&gt;2.  Text file created with input file information (let's call it /tmp/elmtst.txt) -- contents of file are the .jpg and .doc files:&lt;BR /&gt;&lt;BR /&gt;[include /tmp/swagent_log.doc application/octet-stream] &lt;BR /&gt;[include /tmp/friend.jpg application/octet-stream] &lt;BR /&gt;&lt;BR /&gt;Command line:&lt;BR /&gt;&lt;BR /&gt;elm -s "This is a test" email@domain.com &amp;lt; /tmp/elmtst.txt&lt;BR /&gt;&lt;BR /&gt;On the screen:&lt;BR /&gt;Result, output: &lt;BR /&gt;&lt;BR /&gt;Include file has BINARY data. &lt;BR /&gt;Include file has BINARY data. &lt;BR /&gt;Include file has BINARY data. &lt;BR /&gt;Include file has BINARY data. &lt;BR /&gt;Sending mail... &lt;BR /&gt;Mail sent! &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Result:  The image file (although transfered to the server as binary file), when received in the outlook account (it is an attachment) it becomes distorted.  The MS Word document cannot be opened???  (The File is sent to a PC with either Outlook 98 or 2000 and MS Word 97 or 2000 respectively -- File is in MS Word 97 format).&lt;BR /&gt;&lt;BR /&gt;Things I still have to try:&lt;BR /&gt;&lt;BR /&gt;Use mpack 1.5 or mutt mail client 1.4&lt;BR /&gt;&lt;BR /&gt;More info about these here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x6b3fc4c76f92d611abdb0090277a778c,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x6b3fc4c76f92d611abdb0090277a778c,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Any other suggestions?  Something possibly not configured correctly in sendmail or the relay server?&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Jul 2002 01:05:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764338#M73214</guid>
      <dc:creator>MAD_2</dc:creator>
      <dc:date>2002-07-16T01:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764339#M73215</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Have you tried the below script&lt;BR /&gt;&lt;BR /&gt;  #!/usr/bin/sh&lt;BR /&gt;&lt;BR /&gt;  export EMAIL_TO=username@receiving.email&lt;BR /&gt;  export EMAIL_FROM=username@sending.email&lt;BR /&gt;  export EMAIL_SUBJECT="subject of e-mail"&lt;BR /&gt;  export EMAIL_BODY=/tmp/body_of_e-mail&lt;BR /&gt;  export FILE_NAME=filename.txt&lt;BR /&gt;  export ATTACHED_FILE=/tmp/file_to_attach&lt;BR /&gt;&lt;BR /&gt;  {&lt;BR /&gt;    echo To:      $EMAIL_TO&lt;BR /&gt;    echo From:    $EMAIL_FROM&lt;BR /&gt;    echo Subject: $EMAIL_SUBJECT&lt;BR /&gt;    echo 'MIME-Version: 1.0'&lt;BR /&gt;    echo 'Content-type: multipart/mixed; boundary="xxxxyyyzzqzzyyyxxxx"'&lt;BR /&gt;    echo '--xxxxyyyzzqzzyyyxxxx'&lt;BR /&gt;    echo ''&lt;BR /&gt;    cat $EMAIL_BODY&lt;BR /&gt;    echo '--xxxxyyyzzqzzyyyxxxx'&lt;BR /&gt;    echo 'Content-Disposition: attachment; filename="'$FILE_NAME'"'&lt;BR /&gt;    echo ''&lt;BR /&gt;    cat $ATTACHED_FILE&lt;BR /&gt;    echo '--xxxxyyyzzqzzyyyxxxx--'&lt;BR /&gt;  } | /usr/sbin/sendmail $EMAIL_TO&lt;BR /&gt;&lt;BR /&gt; HTH&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Tue, 16 Jul 2002 01:57:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764339#M73215</guid>
      <dc:creator>steven Burgess_2</dc:creator>
      <dc:date>2002-07-16T01:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764340#M73216</link>
      <description>Did you check this link&lt;BR /&gt;&lt;BR /&gt;the active answers read on the forum.&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;</description>
      <pubDate>Tue, 16 Jul 2002 02:18:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764340#M73216</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2002-07-16T02:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764341#M73217</link>
      <description>&amp;gt; Methods used: &lt;BR /&gt;&amp;gt; 1. For each &lt;BR /&gt;&amp;gt; uuencode file1.jpg file1.jpg | mailx -m -s "This is a test" email@domain.com&lt;BR /&gt;&lt;BR /&gt;As mentioned in the other thread, do *not* use "-m"!&lt;BR /&gt;&lt;BR /&gt;That sounds 'backwards'/wrong, but it causes mailx to be 'dumb' and Outlook to be 'smart', and it works (for me).&lt;BR /&gt;&lt;BR /&gt;You say that you tested without "-m" and that it didn't work, but my advice/request is to try *again*, because for *me* it *does* work (details in the other thread) and perhaps you (also) made another change which caused the failure.&lt;BR /&gt;&lt;BR /&gt;BTW, I think it is not wise to start another thread while your problem is not yet solved. It *is* good that you gave a summary and a pointer to the other thread, but now people have to jump between the threads to see what was (not) said in the other thread. I think that posting your summary *in* the old thread would have been better.&lt;BR /&gt;&lt;BR /&gt;Also please post a pointer to this thread in the old thread.</description>
      <pubDate>Tue, 16 Jul 2002 12:35:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764341#M73217</guid>
      <dc:creator>Frank Slootweg</dc:creator>
      <dc:date>2002-07-16T12:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764342#M73218</link>
      <description>Hi Adam&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;mpack should ideally work as we have the same working in our production env , you amy like to look at the following  too:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.stokely.com/unix.sysadm.resources/email.html#attachment.link" target="_blank"&gt;http://www.stokely.com/unix.sysadm.resources/email.html#attachment.link&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava</description>
      <pubDate>Tue, 16 Jul 2002 12:45:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764342#M73218</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-07-16T12:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764343#M73219</link>
      <description>Hi Adam,&lt;BR /&gt;&lt;BR /&gt;As I tell you in the other thread the problem is in the method used to transfer the files between the PC and the unix machine, try the following:&lt;BR /&gt;&lt;BR /&gt;"I've got your problem trying in my system, the problem is when you transfer the gif file from windows environment to UNIX environment you transfer the file as an ascii file, then when you send it by mail obtain a corrupted file. &lt;BR /&gt;&lt;BR /&gt;Try to ftp the gif file to the unix box as a binary transfer method and then send it by mail with your original instruction: &lt;BR /&gt;uuencode file.gif file.gif | mailx -m -s "Test" email@address.com &lt;BR /&gt;&lt;BR /&gt;This must works perfect, I'd checked. "&lt;BR /&gt;&lt;BR /&gt;Regards, &lt;BR /&gt;&lt;BR /&gt;Justo.</description>
      <pubDate>Tue, 16 Jul 2002 13:29:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764343#M73219</guid>
      <dc:creator>Justo Exposito</dc:creator>
      <dc:date>2002-07-16T13:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764344#M73220</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Just a quick thought, last time I encountered encoding problems, I gzipped the file before attaching as a mail. Then resend as before, kind of a dodgey work around for the problem.......&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;-ChaZ-</description>
      <pubDate>Tue, 16 Jul 2002 14:31:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764344#M73220</guid>
      <dc:creator>Charles Harris</dc:creator>
      <dc:date>2002-07-16T14:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764345#M73221</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I've tried the mpack command and it transferred the binary file for me. That was the reason i had suggested you to download and try mpack in your last post. like i had suggested you can download and install it from the hp porting site,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu" target="_blank"&gt;http://hpux.cs.utah.edu&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, 16 Jul 2002 14:38:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764345#M73221</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-07-16T14:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764346#M73222</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I just sent a ms-word doc file using mpack and it was received correctly on my workstation. &lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Jul 2002 14:41:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764346#M73222</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-07-16T14:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764347#M73223</link>
      <description>Well when I want to send something using 'include' that's a word or excel file I do it this way:&lt;BR /&gt;&lt;BR /&gt;[include file.xls application/msexcel base64]&lt;BR /&gt;&lt;BR /&gt;[include file.doc application/msword base64]&lt;BR /&gt;&lt;BR /&gt;I don't generally send gif or jpg's, but I'll put some out on my HPUX and I'll give it a try and see if I can get the syntax worked out for you...&lt;BR /&gt;&lt;BR /&gt;Rgrds,&lt;BR /&gt;Rita</description>
      <pubDate>Tue, 16 Jul 2002 15:18:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764347#M73223</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2002-07-16T15:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764348#M73224</link>
      <description>Hi again !&lt;BR /&gt;&lt;BR /&gt;Well found tons of jpg files out under /opt/tngfw/browser/images/wvicons  I liked earth.jpg and sent myself that file from my HPUX box to my GroupWise account and opened it up on my PC, using nothing special...and voila...it was earth !&lt;BR /&gt;&lt;BR /&gt;All I used was a simple include that said..&lt;BR /&gt;&lt;BR /&gt;[include ~/wvicons/earth.jpg images/jpeg base64]&lt;BR /&gt;&lt;BR /&gt;Rgrds,&lt;BR /&gt;Rita&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Jul 2002 16:34:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764348#M73224</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2002-07-16T16:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764349#M73225</link>
      <description>Adam,&lt;BR /&gt;&lt;BR /&gt;I have tried the following SENDMAIL which worked!&lt;BR /&gt;&lt;BR /&gt;# (echo "Subject: Your_Subject"; uuencode file1.jpg file1.jpg) | sendmail email@domain.com &lt;BR /&gt;&lt;BR /&gt;Hai&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Jul 2002 16:45:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764349#M73225</guid>
      <dc:creator>Hai Nguyen_1</dc:creator>
      <dc:date>2002-07-16T16:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764350#M73226</link>
      <description>Thanks everyone for your replies.  &lt;BR /&gt;&lt;BR /&gt;I will give consideration to each and probably attempt all.  I am normally off from Tuesday through Thursday, so I probably will not try the downloads (like mpack) until that day, but I will definitely attempt the other methods, possibly from home.  After I go through each and depending on my success rate I will assign due points.  I will post another message once I can scream "EUREKA"!&lt;BR /&gt;&lt;BR /&gt;Thanks again.  By the way, Justo, all of my FTP transfers have been binary; I never transfer a file in ASCII unless I know for sure the file is simple text only; that's not the problem in my situation, but I will look into Rita's recommendations (that may be the problem!)</description>
      <pubDate>Tue, 16 Jul 2002 19:22:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764350#M73226</guid>
      <dc:creator>MAD_2</dc:creator>
      <dc:date>2002-07-16T19:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764351#M73227</link>
      <description>Download a copy of nail from the HP porting centre - &lt;A href="http://hpux.connect.org.uk/hppd/hpux/Networking/Mail/nail-9.30/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Networking/Mail/nail-9.30/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Use is similar to elm, mail, mailx etc. but the attachments can be sent using the -a option.&lt;BR /&gt;&lt;BR /&gt;e.g. nail [ -iInv ] [ -s subject ] [ -a attachment ] [ -c cc-addr ] [ -b bcc-addr ] [ -r from-addr ] to-addr . . .&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Jul 2002 20:59:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764351#M73227</guid>
      <dc:creator>Chris Lonergan</dc:creator>
      <dc:date>2002-07-16T20:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764352#M73228</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If I'am mailing documents to Windows as attachments, I do use the following command:&lt;BR /&gt;&lt;BR /&gt;ux2dos document.whatever |uuencode document.&lt;DESIRED extension=""&gt;|mailx -m -s "Test for mailing as attachment" email@domain.com&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps (I'm sure it works for normal text), BB.&lt;/DESIRED&gt;</description>
      <pubDate>Wed, 17 Jul 2002 10:48:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764352#M73228</guid>
      <dc:creator>Bart Beeren</dc:creator>
      <dc:date>2002-07-17T10:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764353#M73229</link>
      <description>Excellent Rita,&lt;BR /&gt;&lt;BR /&gt;I followed your suggestion and that did the trick.  I will also look into the other applications mentioned here and will give you all points accordingly, however to send you my replies it will be a while longer.  For now, Rita's suggestion was simple and worked perfectly.  Thanks a lot everyone!  &lt;BR /&gt;&lt;BR /&gt;P.S.  I know I still owe some of you points, they will come a little while later.</description>
      <pubDate>Sat, 20 Jul 2002 13:34:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764353#M73229</guid>
      <dc:creator>MAD_2</dc:creator>
      <dc:date>2002-07-20T13:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764354#M73230</link>
      <description>Manoj and Sanjay,&lt;BR /&gt;&lt;BR /&gt;The mpack solution also works perfectly, just got a chance to try it today.  Now I have a couple of ways to resolve our problem, mpack which I can use for single files (a very simple syntax from the command line too) and then elm for a number of files.  Great!  I will see about the others later (nail and mutt I think it is).  Thanks everyone.</description>
      <pubDate>Sun, 21 Jul 2002 16:26:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764354#M73230</guid>
      <dc:creator>MAD_2</dc:creator>
      <dc:date>2002-07-21T16:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764355#M73231</link>
      <description>What *is* Rita's solution *exactly*?&lt;BR /&gt;&lt;BR /&gt;I know that it is "[include ....]", but an include in *what*? I *assume* in  elm(1), but I would like to be sure. Also which version, HP-UX release, etc..&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Jul 2002 08:59:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764355#M73231</guid>
      <dc:creator>Frank Slootweg</dc:creator>
      <dc:date>2002-07-22T08:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764356#M73232</link>
      <description>Frank,&lt;BR /&gt;&lt;BR /&gt;Previously I had used A. Clay Stephenson's solution (he has always provided me with some great answers) as described below (see this forum answer --  (&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x6b3fc4c76f92d611abdb0090277a778c,00.html):" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x6b3fc4c76f92d611abdb0090277a778c,00.html):&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;1.  Create a simple text file with input file(s) information (let's call it /tmp/elmtst.txt) -- contents of file are a .jpg, .doc, and .html files: &lt;BR /&gt;&lt;BR /&gt;[include /tmp/swagent_log.doc application/octet-stream] &lt;BR /&gt;[include /tmp/friend.jpg application/octet-stream]&lt;BR /&gt;[include /tmp/HotmailPage.html application/octet-stream] &lt;BR /&gt;&lt;BR /&gt;Command line: &lt;BR /&gt;&lt;BR /&gt;elm -s "This is a test" email@domain.com &amp;lt; /tmp/elmtst.txt &lt;BR /&gt;&lt;BR /&gt;The include portion was either creating some altered or corrupt files.  Then Rita recommended to change the [include to]...&lt;BR /&gt;&lt;BR /&gt;[include /tmp/swagent_log.doc application/msword base64] &lt;BR /&gt;[include /tmp/friend.jpg image/jpeg base64]&lt;BR /&gt;[include /tmp/HotmailPage.html application/hmtl base64] &lt;BR /&gt;&lt;BR /&gt;For the image I have also used:  [include /tmp/friend.jpg application/jpeg base64]&lt;BR /&gt;&lt;BR /&gt;Either one works perfectly!&lt;BR /&gt;&lt;BR /&gt;P.S.  I have an RP5470 with HP-UX 11.00</description>
      <pubDate>Mon, 22 Jul 2002 09:52:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764356#M73232</guid>
      <dc:creator>MAD_2</dc:creator>
      <dc:date>2002-07-22T09:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Attempting to send email attachments from and HP-UX 11.00</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764357#M73233</link>
      <description>Hi Admin,&lt;BR /&gt;&lt;BR /&gt;This is for Frank....hope you don't mind..&lt;BR /&gt;&lt;BR /&gt;Here's a thread that gives some details on what I suggested.  You can do a search for mail attachments too.  Basically, I found an old HP document that explained using the 'include' method, when I needed to address sending reports from the UNIX boxes to end users (i.e. save paper..) and since the 'include' cost $00 - it was perfect for me !&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://my1.itrc.hp.com/cm/QuestionAnswer/0,,0x41950559ff7cd4118fef0090279cd0f9!0,00.html" target="_blank"&gt;http://my1.itrc.hp.com/cm/QuestionAnswer/0,,0x41950559ff7cd4118fef0090279cd0f9!0,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Share &amp;amp; Enjoy !&lt;BR /&gt;Rita&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Jul 2002 11:06:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/attempting-to-send-email-attachments-from-and-hp-ux-11-00/m-p/2764357#M73233</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2002-07-22T11:06:20Z</dc:date>
    </item>
  </channel>
</rss>

