<?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 Mails from OpenVMS with Attachments (.ZIPS) in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522095#M5344</link>
    <description>You can also use the mailsymbiont from the freeware CD. It handles binary attachments and can also send text in the body in the mail.&lt;BR /&gt;&lt;BR /&gt;Newest version can be found on:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://oswald.knoppers.googlepages.com/mailsymhome" target="_blank"&gt;http://oswald.knoppers.googlepages.com/mailsymhome&lt;/A&gt;</description>
    <pubDate>Thu, 19 Apr 2007 03:25:37 GMT</pubDate>
    <dc:creator>Oswald Knoppers_1</dc:creator>
    <dc:date>2007-04-19T03:25:37Z</dc:date>
    <item>
      <title>Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522078#M5327</link>
      <description>Hello,&lt;BR /&gt;ist it possible that i can sending Mails over OpenVMS with attachments?&lt;BR /&gt;Im looking for examples who i can send ZIP-Files or Binary Files etc. to another Mailsystems.&lt;BR /&gt;&lt;BR /&gt;Thanks for your Tips&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Apr 2005 08:57:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522078#M5327</guid>
      <dc:creator>Vallentin, Manfred</dc:creator>
      <dc:date>2005-04-11T08:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522079#M5328</link>
      <description>Manfred,&lt;BR /&gt;&lt;BR /&gt;yes - you can use the MIME utility to do compose messages with attachments and then send the resulting file to other mail systems.&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;$ MIME&lt;BR /&gt;MIME&amp;gt; NEW/NOEDIT x.x&lt;BR /&gt;MIME&amp;gt; ADD/BIN abc.zip&lt;BR /&gt;MIME&amp;gt; SAVE&lt;BR /&gt;&lt;BR /&gt;Then send file x.x to your other mail system with&lt;BR /&gt;&lt;BR /&gt;$ MAIL x.x "user@mail.domain"/SUBJ="Test"&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Mon, 11 Apr 2005 09:14:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522079#M5328</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2005-04-11T09:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522080#M5329</link>
      <description>There's the MIME utility to compose MIME mails, see &lt;A href="http://h71000.www7.hp.com/doc/731FINAL/6489/6489pro_014.html#mice" target="_blank"&gt;http://h71000.www7.hp.com/doc/731FINAL/6489/6489pro_014.html#mice&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;  Martin</description>
      <pubDate>Mon, 11 Apr 2005 09:17:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522080#M5329</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2005-04-11T09:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522081#M5330</link>
      <description>I'm not sure where I found the following code:&lt;BR /&gt;&lt;BR /&gt;$       set noon&lt;BR /&gt;$!      set nover&lt;BR /&gt;$       ext = f$edi(f$par(p1,,,"type"),"lowercase")&lt;BR /&gt;$       fn  = f$edi(f$par(p1,,,"name"),"lowercase")&lt;BR /&gt;$       if ext .eqs. ".com"&lt;BR /&gt;$          then&lt;BR /&gt;$               zip 'fn'.zip 'p1'&lt;BR /&gt;$               uuencode 'fn'.zip 'p1'_uu&lt;BR /&gt;$          else&lt;BR /&gt;$               uuencode 'p1' 'p1'_uu&lt;BR /&gt;$       endif&lt;BR /&gt;$       mail/sub="''p1'" 'p1'_uu "''p2'"&lt;BR /&gt;&lt;BR /&gt;As you can see it uses uuencode to send files.&lt;BR /&gt;&lt;BR /&gt;Ken</description>
      <pubDate>Mon, 11 Apr 2005 09:58:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522081#M5330</guid>
      <dc:creator>Ken Robinson</dc:creator>
      <dc:date>2005-04-11T09:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522082#M5331</link>
      <description>In addition to MIME, there is another utility called MPACK that ought to do the trick.  Personally I use Perl with the MIME::Lite module; read about it here: &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.akadia.com/services/email_attachments_using_perl.html" target="_blank"&gt;http://www.akadia.com/services/email_attachments_using_perl.html&lt;/A&gt;</description>
      <pubDate>Mon, 11 Apr 2005 13:18:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522082#M5331</guid>
      <dc:creator>Craig A Berry</dc:creator>
      <dc:date>2005-04-11T13:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522083#M5332</link>
      <description>Hi,&lt;BR /&gt;you can use classic VMS mail:&lt;BR /&gt;$ uuencode := $ tcpip$uuencode&lt;BR /&gt;$ uuencode myfile.zip myfile.dat&lt;BR /&gt;$ mail myfile.dat "email-adres@something.com" /subject="Mail with attachment"&lt;BR /&gt;&lt;BR /&gt;Petr &lt;BR /&gt;(You could set $uudecode := $ tcpip$uudecode for decoding, but it doesn't needed for this)</description>
      <pubDate>Tue, 12 Apr 2005 02:31:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522083#M5332</guid>
      <dc:creator>Petr Spisek</dc:creator>
      <dc:date>2005-04-12T02:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522084#M5333</link>
      <description>Is there any way to get text into the message body as well?&lt;BR /&gt;&lt;BR /&gt;Rob.&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Apr 2005 03:07:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522084#M5333</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2005-04-12T03:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522085#M5334</link>
      <description>Rob, &lt;BR /&gt;mail mytextfile.txt "email@addr.com"&lt;BR /&gt;&lt;BR /&gt;Petr</description>
      <pubDate>Tue, 12 Apr 2005 03:12:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522085#M5334</guid>
      <dc:creator>Petr Spisek</dc:creator>
      <dc:date>2005-04-12T03:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522086#M5335</link>
      <description>Rob,&lt;BR /&gt;&lt;BR /&gt;with MIME you can also put text into the message body before adding your attachements:&lt;BR /&gt;&lt;BR /&gt;$ MIME&lt;BR /&gt;MIME&amp;gt; NEW/EDIT x.x&lt;BR /&gt;...&lt;BR /&gt;MIME&amp;gt; ADD/BIN abc.zip&lt;BR /&gt;MIME&amp;gt; SAVE&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Tue, 12 Apr 2005 03:14:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522086#M5335</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2005-04-12T03:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522087#M5336</link>
      <description>Was thinking more along the lines of an automated procedure.&lt;BR /&gt;&lt;BR /&gt;We wrote a VB program some time ago that is capable of taking a VMS created file and attaching it to an email using MS Oulook, then sending it off to a list of users.&lt;BR /&gt;&lt;BR /&gt;This relies on Pathworks, Exchange and a PC logged on.&lt;BR /&gt;&lt;BR /&gt;If I can transfer the whole thing onto the Alpha, but still have it run unassisted in batch, it will simplify the whole process.&lt;BR /&gt;&lt;BR /&gt;Rob.&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Apr 2005 03:55:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522087#M5336</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2005-04-12T03:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522088#M5337</link>
      <description>OK, think I've got something workable now.&lt;BR /&gt;&lt;BR /&gt;I can dynamically create a simple header file like this :-&lt;BR /&gt;&lt;BR /&gt;ALPHA_ROB$$ typ robmime.tmp&lt;BR /&gt;Mime-version: 1.0&lt;BR /&gt;Content-Type: text/plain; charset=ISO-8859-1&lt;BR /&gt;Content-Transfer-Encoding: 7bit&lt;BR /&gt;Message-ID: &lt;XXXXXXXX.XXXXXXXX&gt;&lt;BR /&gt;&lt;BR /&gt;This is a test message&lt;BR /&gt;----------------------&lt;BR /&gt;&lt;BR /&gt;ALPHA_ROB$$ &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Then use a script like this to send the email :-&lt;BR /&gt;&lt;BR /&gt;$ set veri&lt;BR /&gt;$ cop robmime.tmp robmail.tmp&lt;BR /&gt;$ mime == "$sys$system:mime.exe"&lt;BR /&gt;$ mime&lt;BR /&gt;open robmail.tmp /draft&lt;BR /&gt;add rob.zip &lt;BR /&gt;add [live.txt]test.txt&lt;BR /&gt;save&lt;BR /&gt;$ mail robmail.tmp "ratkinson@tbsltd.co.uk" /subject="test - ''F$time()'"&lt;BR /&gt;$ exit&lt;BR /&gt;&lt;BR /&gt;One last thing. Any idea how I set the 'from' address, so that all emails come back to our Helpdesk or similar?&lt;BR /&gt;&lt;BR /&gt;Rob.&lt;/XXXXXXXX.XXXXXXXX&gt;</description>
      <pubDate>Tue, 12 Apr 2005 05:06:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522088#M5337</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2005-04-12T05:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522089#M5338</link>
      <description>Rob,&lt;BR /&gt;&lt;BR /&gt;TCP/IP Services has this TCPIP$SFF (Send from file) utility. If you have constructed a complete mail file (including the mail headers) you can use it to feed that mail to TCP/IP Services' SMTP. See &lt;A href="http://h71000.www7.hp.com/doc/732FINAL/6525/6525pro_016.html#sff_sec" target="_blank"&gt;http://h71000.www7.hp.com/doc/732FINAL/6525/6525pro_016.html#sff_sec&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;  Martin&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Apr 2005 05:33:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522089#M5338</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2005-04-12T05:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522090#M5339</link>
      <description>Hello VOlker,&lt;BR /&gt;if i use the following Command, then i become this Error message:&lt;BR /&gt;&lt;BR /&gt;MIME&amp;gt; new/edit&lt;BR /&gt;_Input Message File Name: test.txt&lt;BR /&gt;%MIME-E-ERROR, error: Error spawning edit command&lt;BR /&gt;status = 00038008&lt;BR /&gt;MIME&lt;BR /&gt;&lt;BR /&gt;what is wrong&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Apr 2005 09:06:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522090#M5339</guid>
      <dc:creator>Vallentin, Manfred</dc:creator>
      <dc:date>2005-04-12T09:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522091#M5340</link>
      <description>Manfred,&lt;BR /&gt;&lt;BR /&gt;MIME tries to use a default editor.&lt;BR /&gt;Please check MIME&amp;gt; HELP NEW/EDIT for the various possibilities to define a default editor.&lt;BR /&gt;&lt;BR /&gt;I normally have a global symbol ED*IT:==EDIT/TPU - if I delete this symbol, I get the same error message as you.&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Tue, 12 Apr 2005 09:14:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522091#M5340</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2005-04-12T09:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522092#M5341</link>
      <description>Hi Manfred,&lt;BR /&gt;&lt;BR /&gt;The /EDIT qualifier expects a quoted string. So you need not specify the&lt;BR /&gt;qualifier unless you want a specific editor or /NOEDIT session.&lt;BR /&gt;&lt;BR /&gt;  /EDIT="Editor_command_string-or-_file_here" ! for example:&lt;BR /&gt;&lt;BR /&gt;  MIME&amp;gt; NEW /EDIT="EDIT/TPU"   !. . .is the proper usage&lt;BR /&gt;&lt;BR /&gt;  MIME&amp;gt; NEW /EDIT="EDIT/EDT"   ! or this&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Lokesh</description>
      <pubDate>Tue, 12 Apr 2005 09:26:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522092#M5341</guid>
      <dc:creator>Lokesh_2</dc:creator>
      <dc:date>2005-04-12T09:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522093#M5342</link>
      <description>&lt;!--!*#--&gt;Hello!&lt;BR /&gt;&lt;BR /&gt;I had a similar challenge: a vms-program produced an xml-file which should be sent to an e-mail addresslist. Due to the size of the xml-file which would not be accepted by e-mail servers, I had to zip it first under OpenVMS 7.3, and send the compressed file as a bcc to each address using mime. The tcpip protocol stack: TCPware v 5.6.&lt;BR /&gt;&lt;BR /&gt;The difficult parts where producing the mimefile within a batch and sending the mimemail with a differect return address e-mail alias via the tcpware stack using the SMTP_USER_HEADERS logical.&lt;BR /&gt;&lt;BR /&gt;This forum provided pieces of the puzzle to finaly succeed!&lt;BR /&gt;&lt;BR /&gt;$!&lt;BR /&gt;$ DATE  = F$EXTRACT(0,11,F$TIME())&lt;BR /&gt;$ DAY   = F$EXTRACT(0,2,DATE)&lt;BR /&gt;$ MONTH = F$EXTRACT(3,3,DATE)&lt;BR /&gt;$ YEAR  = F$EXTRACT(9,2,DATE)&lt;BR /&gt;$ DATUM = YEAR+MONTH+DAY&lt;BR /&gt;$!&lt;BR /&gt;$! Running the program that produces the xml outputfile pricelist.xml:&lt;BR /&gt;$  run prog:xmlmaker.exe &lt;BR /&gt;$!&lt;BR /&gt;$! Zipping the output&lt;BR /&gt;$ zip :== "$prog:zip.exe"&lt;BR /&gt;$ ZipName = "output:pricelist_''DATUM'.zip"&lt;BR /&gt;$ delete 'ZipName';* /log&lt;BR /&gt;$ zip 'ZipName' pricelist.xml&lt;BR /&gt;$!&lt;BR /&gt;$! Make a mime file out of a standard mime-template containing the plain&lt;BR /&gt;$! Text of the mail.&lt;BR /&gt;$ MimeName = "output:pricelist_''DATUM'.mime" &lt;BR /&gt;$ copy output:pricelist_template.mime 'MimeName'&lt;BR /&gt;$ open /write BSTOUT output:mimecmd.com&lt;BR /&gt;$ write bstout "$ mime :== ""$sys$system:mime.exe"" "&lt;BR /&gt;$ write bstout "$ mime&lt;BR /&gt;$ write bstout "open /draft ''MimeName' "&lt;BR /&gt;$ write bstout "add /bin ''ZipName' "&lt;BR /&gt;$ write bstout "save "&lt;BR /&gt;$ write bstout "exit "&lt;BR /&gt;$ close bstout&lt;BR /&gt;$!&lt;BR /&gt;$! Now executing the mime-commandfileâ ¦&lt;BR /&gt;$!&lt;BR /&gt;$ @output:mimecmd.com&lt;BR /&gt;$!&lt;BR /&gt;$! The MimeFile is ready. The MimeHeader in the file should now be imported&lt;BR /&gt;$! In the TCPWARE logical TCPWARE_SMTP_USER_HEADERS&lt;BR /&gt;$! &lt;BR /&gt;$ open /read /error=einde BSTIN 'MimeName'&lt;BR /&gt;$ read /err=einde BSTIN User_Header1&lt;BR /&gt;$ If F$Locate("Mime",User_Header1).nes.F$Length(User_Header1)&lt;BR /&gt;$ then &lt;BR /&gt;$   read /err=einde BSTIN User_Header2&lt;BR /&gt;$   QuotePos = f$locate("""",User_Header2)&lt;BR /&gt;$   User_Header2a=F$extract(0,QuotePos,User_Header2)&lt;BR /&gt;$   User_Header2b=F$extract(QuotePos+1,F$length(User_header2),User_Header2)&lt;BR /&gt;$   QuotePos2 = f$locate("""",User_Header2b)&lt;BR /&gt;$   User_Header2c=F$extract(0,QuotePos2,User_Header2b)&lt;BR /&gt;$   read /err=einde BSTIN User_Header3&lt;BR /&gt;$   read /err=einde BSTIN User_Header4&lt;BR /&gt;$   define/nolog TCPWARE_SMTP_USER_HEADERS - &lt;BR /&gt;    "''User_Header1' ", -&lt;BR /&gt;    "''User_Header2a' ""''User_Header2c'"" ",-&lt;BR /&gt;    "''User_Header3' ", - &lt;BR /&gt;    "Full-Name: ""IT Department"" ",-&lt;BR /&gt;    "Reply-To: ""IT@Hotmail.com"" ",-&lt;BR /&gt;    "Sender: ""It Department"" ",-&lt;BR /&gt;    "''User_Header4' "&lt;BR /&gt;$ else&lt;BR /&gt;$   Write sys$output "''MimeName' is not a Mime-file!" &lt;BR /&gt;$   goto erroreinde&lt;BR /&gt;$ endif&lt;BR /&gt;$!&lt;BR /&gt;$! Now use standard VMS mail to send the mimemail to all e-mail addresses&lt;BR /&gt;$! In the file receivers.dis&lt;BR /&gt;$!&lt;BR /&gt;$ MAIL 'MimeName' "@receivers.dis" /subject="Updated Pricelist"  &lt;BR /&gt;$ goto einde&lt;BR /&gt;$!&lt;BR /&gt;$ERROREINDE:&lt;BR /&gt;$   Write sys$output "mimemail error!" &lt;BR /&gt;$EINDE:&lt;BR /&gt;$ close BSTIN&lt;BR /&gt;&lt;BR /&gt;This is not the final version, in which a loop reads all the addresses in the receivers.dis file and mails the mimefile to each address, but that part is not intresting.&lt;BR /&gt;&lt;BR /&gt;Thanks to all posters on this forum for providing the pieces of the puzzle!&lt;BR /&gt;Hope that this script will help others.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Eric van Spronsen&lt;BR /&gt;The Netherlands&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Apr 2007 15:37:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522093#M5342</guid>
      <dc:creator>Eric vanSpronsen</dc:creator>
      <dc:date>2007-04-18T15:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522094#M5343</link>
      <description>Manfred,&lt;BR /&gt;&lt;BR /&gt;  There's an OpenVMS utility called SMTP SFF (Send From File). Here's the description:&lt;BR /&gt; &lt;BR /&gt;"SMTP SFF allows you to create a mail message in a file and send it to the SMTP mailer to be delivered with headers you specify. Using this feature, you can create automated tools that compose and send mail messages. It is also useful for forwarding non-text files (MIME), because it prevents the mailer from encapsulating the MIME and SMTP headers in the body of a new mail message. Thus, SMTP can function like the redirect command on your personal computer, which simply takes the message as is, without encapsulating it in another message, and sends it to the person you name. " &lt;BR /&gt;&lt;BR /&gt; Use the MIME utility as described above to create the file, add SFF headers and send it from DCL using TCPIP$SYSTEM:TCPIP$SMTP_SFF.EXE, or from a program by calling TCPIP$SMTP_SEND_FROM_FILE (link against SYS$SHARE:TCPIP$SMTP_MAILSHR.EXE/SHARE).&lt;BR /&gt;&lt;BR /&gt;For full details see docs in "HP TCP/IP Services for OpenVMS&lt;BR /&gt;User's Guide", Section 5.9&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Apr 2007 02:39:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522094#M5343</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2007-04-19T02:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Sending Mails from OpenVMS with Attachments (.ZIPS)</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522095#M5344</link>
      <description>You can also use the mailsymbiont from the freeware CD. It handles binary attachments and can also send text in the body in the mail.&lt;BR /&gt;&lt;BR /&gt;Newest version can be found on:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://oswald.knoppers.googlepages.com/mailsymhome" target="_blank"&gt;http://oswald.knoppers.googlepages.com/mailsymhome&lt;/A&gt;</description>
      <pubDate>Thu, 19 Apr 2007 03:25:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sending-mails-from-openvms-with-attachments-zips/m-p/3522095#M5344</guid>
      <dc:creator>Oswald Knoppers_1</dc:creator>
      <dc:date>2007-04-19T03:25:37Z</dc:date>
    </item>
  </channel>
</rss>

