<?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: MIME: Inserting a msg in-line in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963335#M22794</link>
    <description>I'm not too familiar with the MIME utility, but have you tried:&lt;BR /&gt;$ MIME&lt;BR /&gt;NEW msgfile /edit="@create_message"&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;and in CREATE_MESSAGE.COM:&lt;BR /&gt;$ COPY SYS$INPUT 'P1'&lt;BR /&gt;Here comes the inlinetext!&lt;BR /&gt;$EOD&lt;BR /&gt;$EXIT&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
    <pubDate>Wed, 01 Mar 2006 00:59:56 GMT</pubDate>
    <dc:creator>Karl Rohwedder</dc:creator>
    <dc:date>2006-03-01T00:59:56Z</dc:date>
    <item>
      <title>MIME: Inserting a msg in-line</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963334#M22793</link>
      <description>I have a DCL script to create a MIME e-mail as follows:&lt;BR /&gt;&lt;BR /&gt;$ MIME&lt;BR /&gt;NEW/NOEDIT msgfile&lt;BR /&gt;ADD somefile&lt;BR /&gt;ADD anotherfile&lt;BR /&gt;SAVE&lt;BR /&gt;EXIT&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;With the /NOEDIT switch there is no text associated with the msgfile, only the attached files.  This script works.&lt;BR /&gt;&lt;BR /&gt;If I try to add msg text I get stuck interactively in the text editor.  For example, this doesn't work:&lt;BR /&gt;&lt;BR /&gt;$ MIME&lt;BR /&gt;NEW msgfile&lt;BR /&gt;INSERT ; some text line&lt;BR /&gt;EXIT&lt;BR /&gt;ADD attachment&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;How can I create a text component?  Does it&lt;BR /&gt;have to be somehow outside of MIME?  (The MIME doc doesn't seem to explain this.)&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Feb 2006 14:59:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963334#M22793</guid>
      <dc:creator>Jack Trachtman</dc:creator>
      <dc:date>2006-02-28T14:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: MIME: Inserting a msg in-line</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963335#M22794</link>
      <description>I'm not too familiar with the MIME utility, but have you tried:&lt;BR /&gt;$ MIME&lt;BR /&gt;NEW msgfile /edit="@create_message"&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;and in CREATE_MESSAGE.COM:&lt;BR /&gt;$ COPY SYS$INPUT 'P1'&lt;BR /&gt;Here comes the inlinetext!&lt;BR /&gt;$EOD&lt;BR /&gt;$EXIT&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Wed, 01 Mar 2006 00:59:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963335#M22794</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2006-03-01T00:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: MIME: Inserting a msg in-line</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963336#M22795</link>
      <description>If the text is not something fixed as in Volkers example, You can produce the file in advance as any other text-file, e.g. by DCL WRITE statements (which can contain variables).&lt;BR /&gt;&lt;BR /&gt;Then use MIME:&lt;BR /&gt; OPEN/DRAFT thefile&lt;BR /&gt; ADD attachment&lt;BR /&gt; ...&lt;BR /&gt; SAVE&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Mar 2006 03:37:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963336#M22795</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2006-03-01T03:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: MIME: Inserting a msg in-line</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963337#M22796</link>
      <description>eh, Volker above was indeed Karl :-)</description>
      <pubDate>Wed, 01 Mar 2006 03:40:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963337#M22796</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2006-03-01T03:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: MIME: Inserting a msg in-line</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963338#M22797</link>
      <description>Jack - attached is a script that does exactly what you want (may need some tweaking your end).&lt;BR /&gt;&lt;BR /&gt;The embedded message is HTML, but can be anything.&lt;BR /&gt;&lt;BR /&gt;Rob.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Mar 2006 04:34:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963338#M22797</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2006-03-01T04:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: MIME: Inserting a msg in-line</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963339#M22798</link>
      <description>Thanks all</description>
      <pubDate>Mon, 06 Aug 2007 12:08:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/mime-inserting-a-msg-in-line/m-p/4963339#M22798</guid>
      <dc:creator>Jack Trachtman</dc:creator>
      <dc:date>2007-08-06T12:08:35Z</dc:date>
    </item>
  </channel>
</rss>

