<?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 HTML email from VMS? in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013443#M23831</link>
    <description>Roose - our DCL version (attached) of HTML emails with file attachments.&lt;BR /&gt;&lt;BR /&gt;Rob.</description>
    <pubDate>Mon, 13 Nov 2006 03:54:32 GMT</pubDate>
    <dc:creator>Robert Atkinson</dc:creator>
    <dc:date>2006-11-13T03:54:32Z</dc:date>
    <item>
      <title>Sending HTML email from VMS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013439#M23827</link>
      <description>Hi Folks,&lt;BR /&gt;&lt;BR /&gt;I've been trying to look for a procedure to do this but so far, I have been unlucky. There might be some thread on the ITRC before, but no luck as well using the forum search utility.&lt;BR /&gt;&lt;BR /&gt;What I wanted to do is basically, create an HTML file on our VMS node, then send it through SMTP. Once my email client receives it (Lotus Notes), I want to see the HTML output itself, not an HTML attachment file. Is this possible? I already saw some threads about MIME and SFF and was able to test it but the file is being sent as an attachment, not the mail body itself. &lt;BR /&gt;&lt;BR /&gt;Also, is there a better search tool to use when looking for some information on the ITRC? It seems that the search tool here produces more miss than hits when I try to find some keywords.</description>
      <pubDate>Fri, 10 Nov 2006 02:40:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013439#M23827</guid>
      <dc:creator>roose</dc:creator>
      <dc:date>2006-11-10T02:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Sending HTML email from VMS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013440#M23828</link>
      <description>A little trick doing that was posted to comp.os.vms recently: it works by placing the MIME header in the VMS mail SUBJECT.&lt;BR /&gt;&lt;BR /&gt;The saved command-file can be picked up from&lt;BR /&gt;    &lt;A href="http://wwwvms.mppmu.mpg.de/util_root/com/misc/send_html.com" target="_blank"&gt;http://wwwvms.mppmu.mpg.de/util_root/com/misc/send_html.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This trick of course is not guaranted to work with future VMS mail versions.&lt;BR /&gt;&lt;BR /&gt;Certainly You could construct a file for SFF, (using one of the mentioned examples), but instead of building headers for attachments, build a header for HTML in the body:&lt;BR /&gt;&lt;BR /&gt;"Mime-Version: 1.0"&lt;BR /&gt;"Content-Type: text/HTML"&lt;BR /&gt;&lt;BR /&gt;followed by the HTML file content.</description>
      <pubDate>Fri, 10 Nov 2006 03:40:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013440#M23828</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2006-11-10T03:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Sending HTML email from VMS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013441#M23829</link>
      <description>Roose,&lt;BR /&gt;&lt;BR /&gt;Before the MIME utility existed, and on several other occasions for a variety of reasons, I used C-Kermit (which is available at low cost from the Kermit Project at &lt;A href="http://www.columbia.edu/kermit" target="_blank"&gt;http://www.columbia.edu/kermit&lt;/A&gt; ) to manually do the SMTP protocol exchanges with the local SMTP Server. Using a command file, and a Kermit Script, I was able to totally control the details of the message, and generate whatever message was necessary for the application.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Fri, 10 Nov 2006 04:10:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013441#M23829</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2006-11-10T04:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sending HTML email from VMS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013442#M23830</link>
      <description>&lt;BR /&gt;I produced a variant of a command-procedure, now sending a pure MIME header for HTML body, which uses TCPIP send-from-file (SFF) utility, and therefore does not rely on the trick mentioned in my previous reply.&lt;BR /&gt;&lt;BR /&gt;     &lt;A href="http://wwwvms.mppmu.mpg.de/util_root/com/send_html.com" target="_blank"&gt;http://wwwvms.mppmu.mpg.de/util_root/com/send_html.com&lt;/A&gt;</description>
      <pubDate>Fri, 10 Nov 2006 05:47:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013442#M23830</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2006-11-10T05:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Sending HTML email from VMS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013443#M23831</link>
      <description>Roose - our DCL version (attached) of HTML emails with file attachments.&lt;BR /&gt;&lt;BR /&gt;Rob.</description>
      <pubDate>Mon, 13 Nov 2006 03:54:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013443#M23831</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2006-11-13T03:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Sending HTML email from VMS?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013444#M23832</link>
      <description>Hi Folks,&lt;BR /&gt;&lt;BR /&gt;Thanks for your help! The procedures given by Joseph and Rob provided what I was looking for. &lt;BR /&gt;&lt;BR /&gt;I am now closing this thread. Thanks again to all who replied.</description>
      <pubDate>Mon, 13 Nov 2006 04:29:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-html-email-from-vms/m-p/5013444#M23832</guid>
      <dc:creator>roose</dc:creator>
      <dc:date>2006-11-13T04:29:29Z</dc:date>
    </item>
  </channel>
</rss>

