This is an old revision of the document!
Tested with opsi 4.0.2
required WInst Version: unknown
By Frank Thommen, 2014/01/10 11:13
This script requires blat which can be downloaded from http://www.blat.net/.
Usage instructions see below
Tree:
UseSendMail.sub
SendMail_Variables.opsiinc
SendMail_Functions.opsiinc
blat311/
blat311/bin
blat311/bin/blatdll.h
blat311/bin/blat.lib
blat311/bin/blat.dll
blat311/bin/blat.exe
blat311/docs
blat311/docs/syntax.txt
blat311/docs/credits.html
blat311/docs/readme.txt
blat311/docs/changes-194.txt
blat311/docs/file_id.diz
blat311/docs/cgi
blat311/docs/cgi/blat-success.htm
blat311/docs/cgi/blat-cgi.htm
blat311/docs/cgi/blat-fail.htm
blat311/docs/ChangeLog.txt
blat311/docs/license.txt
; ; ----------------------------------------------------------- ; UseSendMail.sub - send file, string or stringlist as mail ; ----------------------------------------------------------- ; ; AUTHOR: Frank Thommen, EMBL Heidelberg ; SHORTNAME (for variable names): mail ; ; PREREQUISITE: blat from http://www.blat.net ; ; ; PURPOSE: Send a mail using "blat". The content of the mail ; can be taken from ; ; * a stringlist (each element will become a line ; of the mailbody ; * a string (this will result in a one-line mail) ; * a textfile (the content will become the mailbody) ; ; The mail subject is user-defined, while sender and ; destination address are harcoded in this version. ; Therefore this version rather qualifies for sending ; status mails to a fixed address rather than being a ; freely configurable mailer. However this could easily ; be achieved by adding more user-definable variables. ; ; ; USAGE: ; Sub UseSendMail.sub ; Set $_mail_subject = "Your Mail Subject" ; ; Set $_mail.msgtype = "stringlist" ; Set $_mail.msgstrlist = <some stringlist cmd> ; or ; Set $_mail.msgtype = "string" ; Set $_mail.msgstring = "Hello, how are you?" ; or ; Set $_mail.msgtype = "file" ; Set $_mail.msgfile = "C:\some\file.txt" ; ; Sub_SendMail ; ; ; HISTORY: 10-JAN-2014: Initial version ; ; include_insert "%SCRIPTDRIVE%\lib\SendMail_Variables.opsiinc" include_append "%SCRIPTDRIVE%\lib\SendMail_Functions.opsiinc"