swirl Guide to OmniMark 5   OmniMark home
docs home 
IndexConceptsTasksSyntaxLibrariesOMX VariablesErrors
 
 
  MailOutBox    

The MailOutBox OMX component allows you to send messages from an OmniMark program through a mail server using the SMTP (Simple Mail Transfer) protocol.

The OmniMark Mail dynamic link library file ("ommail.dll" or "ommail.so") creates the MailOutBox OMX component. The related include file ("ommail.xin") defines the interface to that component. To use MailOutBox OMX components in your program, you must include the following declaration and include statement in your program:

     include "ommail.xin"

Within your program, you can create as many instances of the MailOutBox OMX component as you require by declaring global and local variables of type "MailOutBox". For example:

     include "ommail.xin"

     global MailOutBox my-mailout-1
     global MailOutBox my-mailout-2

     process
        local MailOutBox my-mailout-3
        local MailOutBox my-mailout-4

Once you have declared your MailOutBox OMX variables, you can use these variables to create connections to mail servers using the MailOutBoxCreate function in the OmniMark Mail function library. For example:

     include "ommail.xin"

     process
        local MailOutBox my-mailoutbox

        set my-mailoutbox to MailOutBoxCreate name  "buckaroo"
                                           address  "buck@banzai.com"
                                            server  "mail.banzai.com"

Assuming that no errors occur when establishing the connection to the mail server, you can now send email messages using the other MailOutBox functions in the OmniMark Mail library.

The MailOutBox OMX variable is not copyable. This means that when you set the value of one MailOutBox OMX variable to the value of another MailOutBox OMX variable, you end up with two variables pointing at the same external object. You are able to manipulate both variables, but you're performing those manipulations on the same connection to the mail server, whether you use the original MailOutBox OMX variable or its copy.

   
----  

Top [ INDEX ] [ CONCEPTS ] [ TASKS ] [ SYNTAX ] [ LIBRARIES ] [ OMX ] [ OMX ] [ ERRORS ]

Generated: August 11, 2000 at 3:07:32 pm
If you have any comments about this section of the documentation, send email to docerrors@omnimark.com

Copyright © OmniMark Technologies Corporation, 1988-2000.