<?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: sending mail to outlook but attachment is part of the mail body in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556248#M886985</link>
    <description />
    <pubDate>Tue, 24 Jul 2001 11:53:41 GMT</pubDate>
    <dc:creator>Rita C Workman</dc:creator>
    <dc:date>2001-07-24T11:53:41Z</dc:date>
    <item>
      <title>sending mail to outlook but attachment is part of the mail body</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556245#M886982</link>
      <description>I want to send a plain text file from HP-UX to MS Outlook as an attachment. I have tried all the methods I can find in all the different threads ( uuencode, include, &amp;lt; filename ) with elm, mailx and sendmail. The file contents do get to Outlook but my problem is that they are embedded in the mail body and are not a seperate attachment.  If I try to email a pdf file it does appear as an attachment but plain text files do not.</description>
      <pubDate>Tue, 24 Jul 2001 09:53:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556245#M886982</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2001-07-24T09:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: sending mail to outlook but attachment is part of the mail body</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556246#M886983</link>
      <description>i know this, but you can send attachments following this `procedure`:&lt;BR /&gt;&lt;BR /&gt;gzip -c file_to_compress | uuencode compressed_file &amp;gt;&amp;gt; ./message_to_send&lt;BR /&gt;&lt;BR /&gt;echo "The body of the message" &amp;gt;&amp;gt; ./message_to_send&lt;BR /&gt;&lt;BR /&gt;mailx -s "Subject of the message" xx@yy.zz &amp;lt; message_to_send&lt;BR /&gt;&lt;BR /&gt;at the end, if you want to clean the message_to_send type cat /de/null &amp;gt; ./message_to_send&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Jul 2001 10:15:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556246#M886983</guid>
      <dc:creator>Radu Swider_1</dc:creator>
      <dc:date>2001-07-24T10:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: sending mail to outlook but attachment is part of the mail body</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556247#M886984</link>
      <description>I tried this without success.&lt;BR /&gt;I have a file "ilfile" whch contains 3 lines.  I do ...&lt;BR /&gt;gzip -c ilfile | uuencode ilfile.Z &amp;gt;&amp;gt; ilfile.send&lt;BR /&gt;echo "This is the body" &amp;gt;&amp;gt; ilfile.send&lt;BR /&gt;mailx -s "This is the subject" ian@ssi-world.com &amp;lt; ilfile.send&lt;BR /&gt;In MS outlook, I get a message (no attachment) with the text&lt;BR /&gt;begin 666 ilfile.Z&lt;BR /&gt;G'XL("-)O73L``VEL9FEL90!+3$SD2DI*XDI.3N8"`#3Z'[X,````&lt;BR /&gt;`&lt;BR /&gt;end&lt;BR /&gt;This is the message body&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Jul 2001 11:52:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556247#M886984</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2001-07-24T11:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: sending mail to outlook but attachment is part of the mail body</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556248#M886985</link>
      <description />
      <pubDate>Tue, 24 Jul 2001 11:53:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556248#M886985</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2001-07-24T11:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: sending mail to outlook but attachment is part of the mail body</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556249#M886986</link>
      <description>my script witch send mails with attachments works very well with outlook express...but the output of the gzip have .gz extension....nothing with .Z !!!&lt;BR /&gt;I will send you again my script...&lt;BR /&gt;Maybe is something about the path (try absolute path)&lt;BR /&gt;&lt;BR /&gt;gzip -c a.txt | uuencode a.gz &amp;gt;&amp;gt; ./to_send&lt;BR /&gt;echo "Body" &amp;gt;&amp;gt; ./to_send&lt;BR /&gt;mailx -s "Subject" aa@bb.cc &amp;lt; ./to_send &lt;BR /&gt;&lt;BR /&gt;good luck</description>
      <pubDate>Tue, 24 Jul 2001 12:11:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556249#M886986</guid>
      <dc:creator>Radu Swider_1</dc:creator>
      <dc:date>2001-07-24T12:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: sending mail to outlook but attachment is part of the mail body</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556250#M886987</link>
      <description>Thanks for your help.  It now works beautifully.</description>
      <pubDate>Tue, 24 Jul 2001 13:51:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-mail-to-outlook-but-attachment-is-part-of-the-mail-body/m-p/2556250#M886987</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2001-07-24T13:51:48Z</dc:date>
    </item>
  </channel>
</rss>

